1{ lib 2, buildPythonPackage 3, fetchPypi 4, notebook 5, ipywidgets 6}: 7 8buildPythonPackage rec { 9 pname = "widgetsnbextension"; 10 version = "3.4.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "c9d6e426a1d79d132b57b93b368feba2c66eb7b0fd34bdb901716b4b88e94497"; 15 }; 16 17 propagatedBuildInputs = [ notebook ]; 18 19 # No tests in archive 20 doCheck = false; 21 22 meta = { 23 description = "IPython HTML widgets for Jupyter"; 24 homepage = http://ipython.org/; 25 license = ipywidgets.meta.license; # Build from same repo 26 maintainers = with lib.maintainers; [ fridh ]; 27 }; 28}