nixpkgs/pkgs/development/python-modules/plotly/default.nix
Peder Bergebakken Sundt d868cf572c
Merge pull request #309166 from r-ryantm/auto-update/python311Packages.plotly
python311Packages.plotly: 5.21.0 -> 5.22.0
2024-06-13 02:23:39 +02:00

38 lines
731 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytz,
requests,
six,
tenacity,
}:
buildPythonPackage rec {
pname = "plotly";
version = "5.22.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-hZ/a29hrV3CuJGblQrdhskfRxrSdrtdluVu4xwY+dGk=";
};
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; [ ];
};
}