1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 09:03:48 +00:00
nixpkgs/pkgs/development/python-modules/plotly/default.nix

38 lines
663 B
Nix
Raw Normal View History

2017-05-05 13:22:16 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
2017-05-05 13:22:16 +01:00
, six
}:
buildPythonPackage rec {
pname = "plotly";
2017-06-19 12:43:19 +01:00
version = "2.0.10";
2017-05-05 13:22:16 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-06-19 12:43:19 +01:00
sha256 = "8c013a01bb11c4c269c38a7086ffb92d6a2827922c49706131842498a49b3b81";
2017-05-05 13:22:16 +01:00
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
2017-05-05 13:22:16 +01:00
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 ];
};
}