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