python.pkgs.cufflinks: init at 0.12.0

This commit is contained in:
Robin Gloster 2017-10-18 16:54:05 +02:00
parent 22de3b48cf
commit c6adc2e348
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 27 additions and 0 deletions

@ -0,0 +1,25 @@
{ buildPythonPackage, stdenv, fetchPypi, pandas, plotly, colorlover
}:
buildPythonPackage rec {
pname = "cufflinks";
version = "0.12.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "04ninvwm6277n3hqc17ririss90cd832wza3q3vf115rrrds3xyy";
};
propagatedBuildInputs = [ pandas plotly colorlover ];
# tests not included in archive
doCheck = false;
meta = {
homepage = https://github.com/santosjorge/cufflinks;
description = "Productivity Tools for Plotly + Pandas";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ globin ];
};
}

@ -1669,6 +1669,8 @@ in {
csvkit = callPackage ../development/python-modules/csvkit { };
cufflinks = callPackage ../development/python-modules/cufflinks { };
cx_Freeze = callPackage ../development/python-modules/cx_freeze {};
cvxopt = buildPythonPackage rec {