nixpkgs/pkgs/development/python-modules/cufflinks/default.nix

26 lines
653 B
Nix
Raw Normal View History

2017-10-18 15:54:05 +01:00
{ buildPythonPackage, stdenv, fetchPypi, pandas, plotly, colorlover
}:
buildPythonPackage rec {
pname = "cufflinks";
2017-11-24 19:36:20 +00:00
version = "0.12.1";
2017-10-18 15:54:05 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-11-24 19:36:20 +00:00
sha256 = "8f11e4b6326cc5b2a18011c09fb64f178ba21002f337fd305f64818012a6c679";
2017-10-18 15:54:05 +01:00
};
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 ];
};
}