1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/python-modules/cufflinks/default.nix

25 lines
621 B
Nix
Raw Normal View History

2017-10-18 15:54:05 +01:00
{ buildPythonPackage, stdenv, fetchPypi, pandas, plotly, colorlover
}:
buildPythonPackage rec {
pname = "cufflinks";
2018-11-04 10:34:56 +00:00
version = "0.14.5";
2017-10-18 15:54:05 +01:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:56 +00:00
sha256 = "304f9a30b753e36a9d398133543c9b48214fcf0535d971871894fc3058799c5f";
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 ];
};
}