3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/plotly/default.nix

39 lines
656 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";
2020-08-16 18:31:10 +01:00
version = "4.9.0";
2017-05-05 13:22:16 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:10 +01:00
sha256 = "257f530ffd73754bd008454826905657b329053364597479bb9774437a396837";
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/";
2017-05-05 13:22:16 +01:00
license = with lib.licenses; [ mit ];
};
}