nixpkgs/pkgs/development/python-modules/cufflinks/default.nix
2023-10-24 13:09:45 +02:00

49 lines
907 B
Nix

{ lib, buildPythonPackage, fetchPypi
, chart-studio
, colorlover
, ipython
, ipywidgets
, pytest
, nose
, numpy
, pandas
, six
, statsmodels
}:
buildPythonPackage rec {
pname = "cufflinks";
version = "0.17.3";
src = fetchPypi {
inherit pname version;
sha256 = "0i56062k54dlg5iz3qyl1ykww62mpkp8jr4n450h0c60dm0b7ha8";
};
propagatedBuildInputs = [
chart-studio
colorlover
ipython
ipywidgets
numpy
pandas
six
statsmodels
];
nativeCheckInputs = [ pytest nose ];
# ignore tests which are incompatible with pandas>=1.0
# https://github.com/santosjorge/cufflinks/issues/236
checkPhase = ''
pytest tests.py -k 'not bar_row'
'';
meta = with lib; {
description = "Productivity Tools for Plotly + Pandas";
homepage = "https://github.com/santosjorge/cufflinks";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}