1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, jupyter-client 6, ipython 7, ipykernel 8, prompt-toolkit 9, pygments 10}: 11 12buildPythonPackage rec { 13 pname = "jupyter_console"; 14 version = "5.2.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd"; 19 }; 20 21 checkInputs = [ nose ]; 22 propagatedBuildInputs = [ 23 jupyter-client 24 ipython 25 ipykernel 26 prompt-toolkit 27 pygments 28 ]; 29 30 # ValueError: underlying buffer has been detached 31 doCheck = false; 32 33 meta = { 34 description = "Jupyter terminal console"; 35 homepage = "https://jupyter.org/"; 36 license = lib.licenses.bsd3; 37 }; 38}