2017-05-05 13:22:16 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytz
|
2017-05-07 11:55:45 +01:00
|
|
|
, requests
|
2017-05-05 13:22:16 +01:00
|
|
|
, six
|
2021-08-27 11:45:30 +01:00
|
|
|
, tenacity
|
2017-05-05 13:22:16 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plotly";
|
2021-10-08 23:23:12 +01:00
|
|
|
version = "5.3.1";
|
2017-05-05 13:22:16 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 23:23:12 +01:00
|
|
|
sha256 = "6598393e898a9c5ae78397f76f07002ec41fd92e5f746d3b9806248d53885643";
|
2017-05-05 13:22:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pytz
|
2017-05-07 11:55:45 +01:00
|
|
|
requests
|
2017-05-05 13:22:16 +01:00
|
|
|
six
|
2021-08-27 11:45:30 +01:00
|
|
|
tenacity
|
2017-05-05 13:22:16 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-08-27 11:45:30 +01:00
|
|
|
meta = with lib; {
|
2017-05-05 13:22:16 +01:00
|
|
|
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://plot.ly/python/";
|
2021-08-27 11:45:30 +01:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-05 13:22:16 +01:00
|
|
|
};
|
|
|
|
}
|