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