pythonPackages.cufflinks: 0.15 -> 0.16

This commit is contained in:
Jonathan Ringer 2019-10-01 20:40:20 -07:00 committed by Jon
parent ceefed0723
commit 7d297e4591

View File

@ -1,40 +1,59 @@
{ buildPythonPackage, stdenv, fetchPypi, fetchpatch { lib, buildPythonPackage, fetchPypi, fetchpatch
, numpy, pandas, plotly, six, colorlover , chart-studio
, ipython, ipywidgets, nose , colorlover
, ipython
, ipywidgets
, nose
, numpy
, pandas
, six
, statsmodels
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "cufflinks"; pname = "cufflinks";
version = "0.15"; version = "0.16";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "014098a4568199957198c0a7fe3dbeb3b4010b6de8d692a41fe3b3ac107b660e"; sha256 = "163lag5g4micpqm3m4qy9b5r06a7pw45nq80x4skxc7dcrly2ygd";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy pandas plotly six colorlover chart-studio
ipython ipywidgets colorlover
ipython
ipywidgets
numpy
pandas
six
statsmodels
]; ];
patches = [ patches = [
# Plotly 3.8 compatibility. Remove with the next release. See https://github.com/santosjorge/cufflinks/pull/178 # Plotly 4 compatibility. Remove with next release, assuming it gets merged.
(fetchpatch { (fetchpatch {
url = "https://github.com/santosjorge/cufflinks/commit/cc4c23c2b45b870f6801d1cb0312948e1f73f424.patch"; url = "https://github.com/santosjorge/cufflinks/pull/202/commits/e291dce14181858cb457404adfdaf2624b6d0594.patch";
sha256 = "1psl2h7vscpzvb4idr6s175v8znl2mfhkcyhb1926p4saswmghw1"; sha256 = "1l0dahwqn3cxg49v3i3amwi80dmx2bi5zrazmgzpwsfargmk2kd1";
}) })
]; ];
# in plotly4+, the plotly.plotly module was moved to chart-studio.plotly
postPatch = ''
substituteInPlace requirements.txt \
--replace "plotly>=3.0.0,<4.0.0a0" "chart-studio"
'';
checkInputs = [ nose ]; checkInputs = [ nose ];
checkPhase = '' checkPhase = ''
nosetests -xv tests.py nosetests -xv tests.py
''; '';
meta = { meta = with lib; {
homepage = https://github.com/santosjorge/cufflinks;
description = "Productivity Tools for Plotly + Pandas"; description = "Productivity Tools for Plotly + Pandas";
license = stdenv.lib.licenses.mit; homepage = "https://github.com/santosjorge/cufflinks";
maintainers = with stdenv.lib.maintainers; [ globin ]; license = licenses.mit;
maintainers = with maintainers; [ globin ];
}; };
} }