2017-05-05 13:22:16 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, decorator
|
|
|
|
, nbformat
|
|
|
|
, pytz
|
2017-05-07 11:55:45 +01:00
|
|
|
, requests
|
2018-08-30 14:26:18 +01:00
|
|
|
, retrying
|
2017-05-05 13:22:16 +01:00
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plotly";
|
2019-08-20 16:33:21 +01:00
|
|
|
version = "4.1.0";
|
2017-05-05 13:22:16 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-20 16:33:21 +01:00
|
|
|
sha256 = "166rscpr9xbs3pwd61mivhlm1gv3chkgpk2cy0fpb86axa7z4cwk";
|
2017-05-05 13:22:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
decorator
|
|
|
|
nbformat
|
|
|
|
pytz
|
2017-05-07 11:55:45 +01:00
|
|
|
requests
|
2018-08-30 14:26:18 +01:00
|
|
|
retrying
|
2017-05-05 13:22:16 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|