{ lib , buildPythonPackage , fetchPypi , decorator , nbformat , pytz , requests , six }: buildPythonPackage rec { pname = "plotly"; version = "2.5.1"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "9dd816c36271cf81d82c854fba866c743cbd8cc71f1c95384195307def859a69"; }; propagatedBuildInputs = [ decorator nbformat pytz requests 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 ]; }; }