1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-29 04:26:32 +03:00
nixpkgs/pkgs/development/python-modules/plotly/default.nix

36 lines
653 B
Nix
Raw Normal View History

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