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