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

39 lines
654 B
Nix
Raw Normal View History

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