Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

90 lines
1.6 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
ipykernel,
ipython,
jupyter-client,
jupyter-core,
prompt-toolkit,
pygments,
pyzmq,
traitlets,
# tests
flaky,
pexpect,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "jupyter-console";
version = "6.6.3";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyter";
repo = "jupyter_console";
tag = "v${version}";
hash = "sha256-jdSeZCspcjEQVBpJyxVnwJ5SAq+SS1bW9kqp/F/zwCQ=";
};
postPatch =
# Use wrapped executable in tests
let
binPath = "${placeholder "out"}/bin/jupyter-console";
in
''
substituteInPlace jupyter_console/tests/test_console.py \
--replace-fail "'-m', 'jupyter_console', " "" \
--replace-fail "sys.executable" "'${binPath}'"
'';
build-system = [ hatchling ];
dependencies = [
ipykernel
ipython
jupyter-client
jupyter-core
prompt-toolkit
pygments
pyzmq
traitlets
];
pythonImportsCheck = [ "jupyter_console" ];
nativeCheckInputs = [
flaky
pexpect
pytestCheckHook
];
preCheck = ''
export HOME=$TMPDIR
'';
disabledTests = [
# Flaky: pexpect.exceptions.TIMEOUT: Timeout exceeded
"test_console_starts"
"test_display_text"
];
__darwinAllowLocalNetworking = true;
meta = {
description = "Jupyter terminal console";
mainProgram = "jupyter-console";
homepage = "https://github.com/jupyter/jupyter_console";
changelog = "https://github.com/jupyter/jupyter_console/releases/tag/v${version}";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
};
}