nixpkgs/pkgs/development/python-modules/plotly/default.nix
2018-07-22 16:52:48 +02:00

37 lines
630 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
, six
}:
buildPythonPackage rec {
pname = "plotly";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "015a5b8ca616d19eb96433dd597c3ccccc80e3afba02a23bd526a017ff4fce05";
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
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 ];
};
}