1{ lib 2, buildPythonPackage 3, fetchPypi 4, ipykernel 5}: 6 7buildPythonPackage rec { 8 pname = "metakernel"; 9 version = "0.29.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "sha256-A++uLR4hhOQYmA6o9wBTejFju3CpbK0hwIs7XFscddQ="; 14 }; 15 16 propagatedBuildInputs = [ ipykernel ]; 17 18 # Tests hang, so disable 19 doCheck = false; 20 21 meta = with lib; { 22 description = "Jupyter/IPython Kernel Tools"; 23 homepage = "https://github.com/Calysto/metakernel"; 24 license = licenses.bsd3; 25 maintainers = with maintainers; [ thomasjm ]; 26 }; 27}