My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/cufflinks/default.nix

48 lines
908 B

{ 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
];
checkInputs = [ 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; [ globin ];
};
}