nixpkgs/pkgs/development/python-modules/plotly/default.nix
2024-03-29 21:09:37 +00:00

38 lines
722 B
Nix

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