bf4de776c4
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
39 lines
642 B
Nix
39 lines
642 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, decorator
|
|
, nbformat
|
|
, pytz
|
|
, requests
|
|
, retrying
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plotly";
|
|
version = "3.4.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0bv4gq60mrkw0r5kmakxrnfawlim01bjf3khp62p0qmhw0ixk269";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|