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

36 lines
653 B
Nix
Raw Normal View History

2017-05-05 12:22:16 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
2017-05-05 12:22:16 +00:00
, six
, tenacity
2017-05-05 12:22:16 +00:00
}:
buildPythonPackage rec {
pname = "plotly";
2021-08-30 22:17:09 +00:00
version = "5.3.0";
2017-05-05 12:22:16 +00:00
src = fetchPypi {
inherit pname version;
2021-08-30 22:17:09 +00:00
sha256 = "b6dc306c56e7d5fa7d017718894099b27290b427abf4acad8e5b77fdc3bd32ec";
2017-05-05 12:22:16 +00:00
};
propagatedBuildInputs = [
pytz
requests
2017-05-05 12:22:16 +00:00
six
tenacity
2017-05-05 12:22:16 +00:00
];
# No tests in archive
doCheck = false;
meta = with lib; {
2017-05-05 12:22:16 +00: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 12:22:16 +00:00
};
}