python39Packages.plotly: update meta, add tenacity hard depedency, removed no longer mentioned optional depedencies

This commit is contained in:
Sandro Jäckel 2021-08-27 12:45:30 +02:00 committed by Martin Weinelt
parent f0bd879fdb
commit adc29d9684

View File

@ -1,12 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
, retrying
, six
, tenacity
}:
buildPythonPackage rec {
@ -19,20 +17,19 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
decorator
nbformat
pytz
requests
retrying
six
tenacity
];
# No tests in archive
doCheck = false;
meta = {
meta = with lib; {
description = "Python plotting library for collaborative, interactive, publication-quality graphs";
homepage = "https://plot.ly/python/";
license = with lib.licenses; [ mit ];
license = with licenses; [ mit ];
maintainers = with maintainers; [ ];
};
}