1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/python-modules/plotly/default.nix

36 lines
653 B
Nix
Raw Normal View History

2017-05-05 13:22:16 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
2017-05-05 13:22:16 +01:00
, six
, tenacity
2017-05-05 13:22:16 +01:00
}:
buildPythonPackage rec {
pname = "plotly";
2021-08-30 23:17:09 +01:00
version = "5.3.0";
2017-05-05 13:22:16 +01:00
src = fetchPypi {
inherit pname version;
2021-08-30 23:17:09 +01:00
sha256 = "b6dc306c56e7d5fa7d017718894099b27290b427abf4acad8e5b77fdc3bd32ec";
2017-05-05 13:22:16 +01:00
};
propagatedBuildInputs = [
pytz
requests
2017-05-05 13:22:16 +01:00
six
tenacity
2017-05-05 13:22:16 +01:00
];
# No tests in archive
doCheck = false;
meta = with lib; {
2017-05-05 13:22:16 +01: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 13:22:16 +01:00
};
}