{ lib , buildPythonPackage , fetchPypi , nose , jupyter_client , ipython , ipykernel , prompt_toolkit , pygments , pythonOlder }: buildPythonPackage rec { pname = "jupyter_console"; version = "6.2.0"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; sha256 = "7f6194f4f4692d292da3f501c7f343ccd5e36c6a1becf7b7515e23e66d6bf1e9"; }; propagatedBuildInputs = [ jupyter_client ipython ipykernel prompt_toolkit pygments ]; checkInputs = [ nose ]; postPatch = '' substituteInPlace setup.py \ --replace "prompt_toolkit>=2.0.0,<2.1.0" "prompt_toolkit" ''; # ValueError: underlying buffer has been detached doCheck = false; meta = { description = "Jupyter terminal console"; homepage = "https://jupyter.org/"; license = lib.licenses.bsd3; }; }