Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
python.pkgs.cufflinks: 0.14.6 -> 0.15
Browse files Browse the repository at this point in the history
(cherry picked from commit ed57afc)
  • Loading branch information
Robert Schütz committed Apr 3, 2019
1 parent f5d2da5 commit e18a582
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions pkgs/development/python-modules/cufflinks/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
{ buildPythonPackage, stdenv, fetchPypi, pandas, plotly, colorlover
{ buildPythonPackage, stdenv, fetchPypi
, numpy, pandas, plotly, six, colorlover
, ipython, ipywidgets, nose
}:

buildPythonPackage rec {
pname = "cufflinks";
version = "0.14.6";
version = "0.15";

src = fetchPypi {
inherit pname version;
sha256 = "4188324361cc584214150aadaeb28ed07e9d150adb714b53c5f09d5b3fcdd28a";
sha256 = "014098a4568199957198c0a7fe3dbeb3b4010b6de8d692a41fe3b3ac107b660e";
};

propagatedBuildInputs = [ pandas plotly colorlover ];
propagatedBuildInputs = [
numpy pandas plotly six colorlover
ipython ipywidgets
];

# tests not included in archive
doCheck = false;
checkInputs = [ nose ];

checkPhase = ''
nosetests -xv tests.py
'';

meta = {
homepage = https://github.com/santosjorge/cufflinks;
Expand Down

0 comments on commit e18a582

Please sign in to comment.