39 lines
656 B
Nix
39 lines
656 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, decorator
|
||
|
, nbformat
|
||
|
, pytz
|
||
|
, requests
|
||
|
, retrying
|
||
|
, six
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "plotly";
|
||
|
version = "4.4.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "acc94f17452471ca3446c2ce491c4d1affb99b9ddd9eac4e05614ac4318f8780";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
decorator
|
||
|
nbformat
|
||
|
pytz
|
||
|
requests
|
||
|
retrying
|
||
|
six
|
||
|
];
|
||
|
|
||
|
# No tests in archive
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = {
|
||
|
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
|
||
|
homepage = "https://plot.ly/python/";
|
||
|
license = with lib.licenses; [ mit ];
|
||
|
};
|
||
|
}
|