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

39 lines
643 B
Nix
Raw Normal View History

2017-05-05 14:22:16 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
2018-08-30 15:26:18 +02:00
, retrying
2017-05-05 14:22:16 +02:00
, six
}:
buildPythonPackage rec {
pname = "plotly";
version = "3.10.0";
2017-05-05 14:22:16 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "164aav7i3ann1lv3xbb76ylpph4hissl0wsnmil1s3m0r7sk7jsx";
2017-05-05 14:22:16 +02:00
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
2018-08-30 15:26:18 +02:00
retrying
2017-05-05 14:22:16 +02: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 ];
};
}