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

39 lines
654 B
Nix
Raw Normal View History

2017-05-05 12:22:16 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
2018-08-30 13:26:18 +00:00
, retrying
2017-05-05 12:22:16 +00:00
, six
}:
buildPythonPackage rec {
pname = "plotly";
2018-08-13 07:29:12 +00:00
version = "3.1.1";
2017-05-05 12:22:16 +00:00
src = fetchPypi {
inherit pname version;
2018-08-13 07:29:12 +00:00
sha256 = "2e565c8907ea6f9c517423cf5452e4f4b85635bd0dd400aae943339c826d4176";
2017-05-05 12:22:16 +00:00
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
2018-08-30 13:26:18 +00:00
retrying
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 ];
};
}