38 lines
662 B
Nix
Raw Normal View History

2017-05-05 14:22:16 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
2017-05-05 14:22:16 +02:00
, six
}:
buildPythonPackage rec {
pname = "plotly";
2018-02-17 14:21:42 +01:00
version = "2.4.0";
2017-05-05 14:22:16 +02:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-02-17 14:21:42 +01:00
sha256 = "8e7ee039231fec52b0b38d45e7470f70b117f6527b08cc922d74992f4d082858";
2017-05-05 14:22:16 +02:00
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
2017-05-05 14:22:16 +02:00
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 ];
};
}