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