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