nixpkgs/pkgs/development/python-modules/plotly/default.nix
R. RyanTM 8ae44bdf08 python37Packages.plotly: 3.10.0 -> 4.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-plotly/versions
2019-08-05 12:21:21 -07:00

39 lines
642 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
, retrying
, six
}:
buildPythonPackage rec {
pname = "plotly";
version = "4.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0iw0j2jwlbzknpbdpaqrjjlbycbwqhavp1crblvihf03knn7nkxz";
};
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 ];
};
}