nixpkgs/pkgs/development/python-modules/plotly/default.nix
R. RyanTM 835043a6f6 python36Packages.plotly: 3.1.1 -> 3.3.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.6-plotly/versions
2018-10-24 15:20:26 +02:00

39 lines
642 B
Nix

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