gentoo/dev-python/jupyter-server/jupyter-server-2.17.0-r1.ebuild
Michał Górny b482d00ea9
dev-python/jupyter-server: Enable py3.14
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-10-18 14:45:49 +02:00

75 lines
2.2 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Core services, APIs, and REST endpoints to Jupyter web applications"
HOMEPAGE="
https://jupyter.org/
https://github.com/jupyter-server/jupyter_server/
https://pypi.org/project/jupyter-server/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
>=dev-python/anyio-3.1.0[${PYTHON_USEDEP}]
>=dev-python/argon2-cffi-21.1[${PYTHON_USEDEP}]
>=dev-python/jinja2-3.0.3[${PYTHON_USEDEP}]
>=dev-python/jupyter-client-7.4.4[${PYTHON_USEDEP}]
>=dev-python/jupyter-core-5.1.0[${PYTHON_USEDEP}]
>=dev-python/jupyter-server-terminals-0.4.4[${PYTHON_USEDEP}]
>=dev-python/jupyter-events-0.11.0[${PYTHON_USEDEP}]
>=dev-python/nbconvert-6.4.4[${PYTHON_USEDEP}]
>=dev-python/nbformat-5.3.0[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
>=dev-python/overrides-5.0[${PYTHON_USEDEP}]
' 3.11)
>=dev-python/packaging-22.0[${PYTHON_USEDEP}]
>=dev-python/prometheus-client-0.9[${PYTHON_USEDEP}]
>=dev-python/pyzmq-24[${PYTHON_USEDEP}]
>=dev-python/send2trash-1.8.2[${PYTHON_USEDEP}]
>=dev-python/terminado-0.8.3[${PYTHON_USEDEP}]
>=dev-python/tornado-6.2[${PYTHON_USEDEP}]
>=dev-python/traitlets-5.6.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-1.7[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}]
test? (
dev-python/ipykernel[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-{console-scripts,jupyter,timeout,tornasync} )
EPYTEST_RERUNS=5
distutils_enable_tests pytest
PATCHES=(
# https://github.com/jupyter-server/jupyter_server/pull/1544
"${FILESDIR}/${P}-pytest-rerunfailures.patch"
)
python_test() {
local EPYTEST_DESELECT=(
# This fails if your terminal is zsh (and maybe other non-bash as well?)
tests/test_terminal.py
# Fails because above is ignored
tests/auth/test_authorizer.py
# Fails with additional extensions installed
tests/extension/test_app.py::test_stop_extension
)
# FIXME: tests seem to be affected by previously installed version
epytest \
-o tmp_path_retention_policy=all
}