83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
75 lines
1.5 KiB
Nix
75 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, substituteAll
|
|
, hatchling
|
|
, ipykernel
|
|
, ipython
|
|
, jupyter-client
|
|
, jupyter-core
|
|
, prompt-toolkit
|
|
, pygments
|
|
, pyzmq
|
|
, traitlets
|
|
, flaky
|
|
, pexpect
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyter_console";
|
|
version = "6.6.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WTEhLVy8H5Vvb9YVdVteFfOJqOqmlyiNu+Q3cBdhXsw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
postPatch = ''
|
|
# use wrapped executable in tests
|
|
substituteInPlace jupyter_console/tests/test_console.py \
|
|
--replace "args = ['-m', 'jupyter_console', '--colors=NoColor']" "args = ['--colors=NoColor']" \
|
|
--replace "cmd = sys.executable" "cmd = '${placeholder "out"}/bin/jupyter-console'" \
|
|
--replace "check_output([sys.executable, '-m', 'jupyter_console'," "check_output(['${placeholder "out"}/bin/jupyter-console',"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
ipykernel
|
|
ipython
|
|
jupyter-client
|
|
jupyter-core
|
|
prompt-toolkit
|
|
pygments
|
|
pyzmq
|
|
traitlets
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jupyter_console"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
flaky
|
|
pexpect
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = {
|
|
description = "Jupyter terminal console";
|
|
homepage = "https://github.com/jupyter/jupyter_console";
|
|
changelog = "https://github.com/jupyter/jupyter_console/releases/tag/v${version}";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|