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