2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-21 13:13:33 +00:00
nixpkgs/pkgs/development/python-modules/plotly/default.nix
2021-09-05 15:00:50 +02:00

36 lines
653 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
, six
, tenacity
}:
buildPythonPackage rec {
pname = "plotly";
version = "5.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "b6dc306c56e7d5fa7d017718894099b27290b427abf4acad8e5b77fdc3bd32ec";
};
propagatedBuildInputs = [
pytz
requests
six
tenacity
];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
homepage = "https://plot.ly/python/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ];
};
}