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

39 lines
654 B
Nix
Raw Normal View History

2017-05-05 13:22:16 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
2018-08-30 14:26:18 +01:00
, retrying
2017-05-05 13:22:16 +01:00
, six
}:
buildPythonPackage rec {
pname = "plotly";
2019-12-19 19:31:17 +00:00
version = "4.4.1";
2017-05-05 13:22:16 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:17 +00:00
sha256 = "acc94f17452471ca3446c2ce491c4d1affb99b9ddd9eac4e05614ac4318f8780";
2017-05-05 13:22:16 +01:00
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
2018-08-30 14:26:18 +01:00
retrying
2017-05-05 13:22:16 +01: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 ];
};
}