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

37 lines
630 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";
2018-06-12 17:47:04 +01:00
version = "2.7.0";
2017-05-05 13:22:16 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:04 +01:00
sha256 = "f7305816a423fd899da20919282445703118aeece19a54fb97be4cbf302341f8";
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 ];
};
}