commit: c39de500100d60f1c93960cbb0960146ca7d40ef
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 15 06:24:06 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 15 07:04:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c39de500
dev-python/nox: Bump to 2025.10.14
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/nox/Manifest | 1 +
dev-python/nox/nox-2025.10.14.ebuild | 60 ++++++++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/dev-python/nox/Manifest b/dev-python/nox/Manifest
index 1ad7d702de96..987aa6a233c5 100644
--- a/dev-python/nox/Manifest
+++ b/dev-python/nox/Manifest
@@ -1 +1,2 @@
DIST nox-2025.05.01.gh.tar.gz 4023268 BLAKE2B
b5cfdb095595108613b2bce716ca3fb84978278de23da21f01a5169931187837056bc1381d510f343593097ff4c779f834c06d1bcef61394e72c87db26a92022
SHA512
1b1efac7dd78029d6c61122cdafde8077bfe2635a1d3441e848847e5c81da6cd9f2db102796b855520e9d239ee5b9b782e50b40e904c9bafafcc2f44cf61e871
+DIST nox-2025.10.14.gh.tar.gz 4029759 BLAKE2B
fd524485099c0ed9fc363545792c44d919e6cf0abcfd11ac43fab8f9310c5225534d75a1a58c75edc2cbde46f094f148a5d6bd1aedc673e48887c2d8b5dec3c4
SHA512
94b420670391031b17bf3b77450db11bb8f047284ee8a47cf1faa0f526c46594dd4edb1941599c723c806a58aece99f83a7e668e37968b3c8ddc9ef65c9c8661
diff --git a/dev-python/nox/nox-2025.10.14.ebuild
b/dev-python/nox/nox-2025.10.14.ebuild
new file mode 100644
index 000000000000..70c6361f6bd8
--- /dev/null
+++ b/dev-python/nox/nox-2025.10.14.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2023-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..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Flexible test automation for Python"
+HOMEPAGE="
+ https://github.com/wntrblm/nox/
+ https://pypi.org/project/nox/
+"
+SRC_URI="
+ https://github.com/wntrblm/nox/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND="
+ >=dev-python/argcomplete-1.9.4[${PYTHON_USEDEP}]
+ >=dev-python/attrs-24.1[${PYTHON_USEDEP}]
+ >=dev-python/colorlog-2.6.1[${PYTHON_USEDEP}]
+ >=dev-python/dependency-groups-1.1[${PYTHON_USEDEP}]
+ >=dev-python/pbs-installer-2025.01.06[${PYTHON_USEDEP}]
+ >=dev-python/packaging-21[${PYTHON_USEDEP}]
+ >=dev-python/virtualenv-20.15[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # TODO: conda?
+
'tests/test_sessions.py::TestSessionRunner::test__create_venv_options[nox.virtualenv.CondaEnv.create-conda-CondaEnv]'
+ # Internet
+ tests/test_virtualenv.py::test_uv_install
+ tests/test_main.py::test_noxfile_script_mode
+ )
+
+ case ${EPYTHON} in
+ pypy3*)
+ EPYTEST_DESELECT+=(
+ # hardcoded CPython assumption
+
tests/test_tox_to_nox.py::test_commands_with_requirements
+ tests/test_tox_to_nox.py::test_skipinstall
+ tests/test_tox_to_nox.py::test_trivial
+ tests/test_tox_to_nox.py::test_usedevelop
+ )
+ ;;
+ esac
+
+ epytest -o tmp_path_retention_policy=all
+}