0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
35 lines
641 B
Nix
35 lines
641 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytz
|
|
, requests
|
|
, six
|
|
, tenacity
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plotly";
|
|
version = "5.11.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-Tv70ecLsHYbc2shAW2ynDKZWSad0COOafoSh6i22x4c=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|