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

38 lines
662 B
Nix
Raw Normal View History

2017-05-05 12:22:16 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
2017-05-05 12:22:16 +00:00
, six
}:
buildPythonPackage rec {
pname = "plotly";
2017-10-25 18:04:35 +00:00
version = "2.1.0";
2017-05-05 12:22:16 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-10-25 18:04:35 +00:00
sha256 = "ff6899dc11907b1efb944f79f9583b2e30ba2964bb009145f3580bf30b4d9ee4";
2017-05-05 12:22:16 +00:00
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
2017-05-05 12:22:16 +00:00
six
];
# No tests in archive
doCheck = false;
meta = {
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
homepage = https://plot.ly/python/;
license = with lib.licenses; [ mit ];
};
}