Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 585 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, notebook 5, ipywidgets 6}: 7 8buildPythonPackage rec { 9 pname = "widgetsnbextension"; 10 version = "3.5.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "8c9b4d73e388f2484296be18432d3cc0b8d59de243079a0db16a56c5571e1f86"; 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}