2017-05-05 05:22:16 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, decorator
|
|
|
|
, nbformat
|
|
|
|
, pytz
|
2017-05-07 03:55:45 -07:00
|
|
|
, requests
|
2018-08-30 06:26:18 -07:00
|
|
|
, retrying
|
2017-05-05 05:22:16 -07:00
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plotly";
|
2020-06-05 23:47:22 -07:00
|
|
|
version = "4.8.1";
|
2017-05-05 05:22:16 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:22 -07:00
|
|
|
sha256 = "d3fea527fe3dfdd55d7334318f107b05a8407474a0fffe6cd4726c9b99e624f1";
|
2017-05-05 05:22:16 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
decorator
|
|
|
|
nbformat
|
|
|
|
pytz
|
2017-05-07 03:55:45 -07:00
|
|
|
requests
|
2018-08-30 06:26:18 -07:00
|
|
|
retrying
|
2017-05-05 05:22:16 -07:00
|
|
|
six
|
|
|
|
];
|
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://plot.ly/python/";
|
2017-05-05 05:22:16 -07:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|