nixpkgs/pkgs/development/python-modules/plotly/default.nix
2020-08-16 19:31:10 +02:00

39 lines
656 B
Nix

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