{ lib , buildPythonPackage , fetchPypi , pytz , requests , six , tenacity }: buildPythonPackage rec { pname = "plotly"; version = "5.16.1"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-KVrCXt6xjIk6u3Hcrc6gdbeP1v3wfO5CF6ThAJZnkls="; }; propagatedBuildInputs = [ pytz requests six tenacity ]; # No tests in archive doCheck = false; meta = with lib; { description = "Python plotting library for collaborative, interactive, publication-quality graphs"; homepage = "https://plot.ly/python/"; license = with licenses; [ mit ]; maintainers = with maintainers; [ ]; }; }