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