37 lines
663 B
Nix
37 lines
663 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, decorator
|
|
, nbformat
|
|
, pytz
|
|
, requests
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plotly";
|
|
version = "2.0.12";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0050da900e4420c15766f8dfb8d252510896511361bf485b9308bc0287f7add0";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
decorator
|
|
nbformat
|
|
pytz
|
|
requests
|
|
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 ];
|
|
};
|
|
}
|