39 lines
654 B
Nix
39 lines
654 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, decorator
|
|
, nbformat
|
|
, pytz
|
|
, requests
|
|
, retrying
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plotly";
|
|
version = "3.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2e565c8907ea6f9c517423cf5452e4f4b85635bd0dd400aae943339c826d4176";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|