nixpkgs/pkgs/development/python-modules/plotly/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

36 lines
639 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
, six
, tenacity
}:
buildPythonPackage rec {
pname = "plotly";
version = "5.13.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-kO6aH+4N2jDigw4SmFUIHqF70bBqVTpiti3hXK/xohk=";
};
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; [ ];
};
}