2017-05-05 14:22:16 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, decorator
|
|
|
|
, nbformat
|
|
|
|
, pytz
|
2017-05-07 12:55:45 +02:00
|
|
|
, requests
|
2017-05-05 14:22:16 +02:00
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plotly";
|
2017-10-25 20:04:35 +02:00
|
|
|
version = "2.1.0";
|
2017-05-05 14:22:16 +02:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-10-25 20:04:35 +02:00
|
|
|
sha256 = "ff6899dc11907b1efb944f79f9583b2e30ba2964bb009145f3580bf30b4d9ee4";
|
2017-05-05 14:22:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
decorator
|
|
|
|
nbformat
|
|
|
|
pytz
|
2017-05-07 12:55:45 +02:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|