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