Files
nixpkgs/pkgs/development/python-modules/cufflinks/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

59 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
colorlover,
ipython,
ipywidgets,
numpy,
pandas,
plotly,
pytestCheckHook,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "cufflinks";
version = "0.17.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-SMGzQG3AMABBIZZkie68VRjOpw/U4/FjebSRMoUBpkQ=";
};
# replace duplicated pandas method
# https://github.com/santosjorge/cufflinks/pull/249#issuecomment-1759619149
postPatch = ''
substituteInPlace tests.py \
--replace-fail "from nose.tools import assert_equals" "def assert_equals(x, y): assert x == y" \
--replace-fail "df.ix" "df.loc"
'';
build-system = [ setuptools ];
dependencies = [
colorlover
ipython
ipywidgets
numpy
pandas
plotly
six
];
pythonImportsCheck = [ "cufflinks" ];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests.py" ];
meta = with lib; {
description = "Productivity Tools for Plotly + Pandas";
homepage = "https://github.com/santosjorge/cufflinks";
license = licenses.mit;
maintainers = [ ];
};
}