My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/plotly/default.nix

35 lines
640 B

{ lib
, buildPythonPackage
, fetchPypi
, pytz
, requests
, six
, tenacity
}:
buildPythonPackage rec {
pname = "plotly";
version = "5.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-2G5E69449HU9/5gqubXgPPhyqrj99TpAPpme03gVQzE=";
};
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; [ ];
};
}