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

36 lines
653 B
Nix
Raw Normal View History

2017-05-05 13:22:16 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
2017-05-05 13:22:16 +01:00
, six
, tenacity
2017-05-05 13:22:16 +01:00
}:
buildPythonPackage rec {
pname = "plotly";
2021-10-08 23:23:12 +01:00
version = "5.3.1";
2017-05-05 13:22:16 +01:00
src = fetchPypi {
inherit pname version;
2021-10-08 23:23:12 +01:00
sha256 = "6598393e898a9c5ae78397f76f07002ec41fd92e5f746d3b9806248d53885643";
2017-05-05 13:22:16 +01:00
};
propagatedBuildInputs = [
pytz
requests
2017-05-05 13:22:16 +01:00
six
tenacity
2017-05-05 13:22:16 +01:00
];
# No tests in archive
doCheck = false;
meta = with lib; {
2017-05-05 13:22:16 +01:00
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
homepage = "https://plot.ly/python/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ];
2017-05-05 13:22:16 +01:00
};
}