nixpkgs/pkgs/development/python-modules/plotly/default.nix
R. RyanTM a3e66b1ee1 python37Packages.plotly: 4.0.0 -> 4.1.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-20 08:33:21 -07:00

38 lines
642 B
Nix

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