python.pkgs.cufflinks: init at 0.12.0
This commit is contained in:
parent
22de3b48cf
commit
c6adc2e348
25
pkgs/development/python-modules/cufflinks/default.nix
Normal file
25
pkgs/development/python-modules/cufflinks/default.nix
Normal file
@ -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 { };
|
csvkit = callPackage ../development/python-modules/csvkit { };
|
||||||
|
|
||||||
|
cufflinks = callPackage ../development/python-modules/cufflinks { };
|
||||||
|
|
||||||
cx_Freeze = callPackage ../development/python-modules/cx_freeze {};
|
cx_Freeze = callPackage ../development/python-modules/cx_freeze {};
|
||||||
|
|
||||||
cvxopt = buildPythonPackage rec {
|
cvxopt = buildPythonPackage rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user