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