nixpkgs/pkgs/development/python-modules/plotly/default.nix
2022-01-23 01:09:15 +01:00

36 lines
653 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
, six
, tenacity
}:
buildPythonPackage rec {
pname = "plotly";
version = "5.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "20b8a1a0f0434f9b8d10eb7caa66e947a9a1d698e5a53d40d447bbc0d2ae41f0";
};
propagatedBuildInputs = [
pytz
requests
six
tenacity
];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
homepage = "https://plot.ly/python/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ];
};
}