{ lib , buildPythonPackage , fetchPypi , notebook , ipywidgets }: buildPythonPackage rec { pname = "widgetsnbextension"; version = "3.4.2"; src = fetchPypi { inherit pname version; sha256 = "fa618be8435447a017fd1bf2c7ae922d0428056cfc7449f7a8641edf76b48265"; }; propagatedBuildInputs = [ notebook ]; # No tests in archive doCheck = false; meta = { description = "IPython HTML widgets for Jupyter"; homepage = http://ipython.org/; license = ipywidgets.meta.license; # Build from same repo maintainers = with lib.maintainers; [ fridh ]; }; }