repo/gentoo:master commit in: dev-python/pytest-lazy-fixtures/
MichaŠGórny <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786588324.b517fc4721d1118f21d086c650ccee4324385480.mgorny@gentoo> |
commit: b517fc4721d1118f21d086c650ccee4324385480
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 13 02:13:42 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 02:32:04 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b517fc47
dev-python/pytest-lazy-fixtures: Bump to 1.4.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest-lazy-fixtures/Manifest | 1 +
.../pytest-lazy-fixtures-1.4.1.ebuild | 37 ++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-python/pytest-lazy-fixtures/Manifest b/dev-python/pytest-lazy-fixtures/Manifest
index 2b0a1cb45c68..904fb759ebc1 100644
--- a/dev-python/pytest-lazy-fixtures/Manifest
+++ b/dev-python/pytest-lazy-fixtures/Manifest
@@ -1 +1,2 @@
DIST pytest_lazy_fixtures-1.4.0.tar.gz 36188 BLAKE2B c950a222fc12f4fca293aff1ce68fa8d831c89d85b3c6a9e4d55b3f1076893bb906abf0b76a4a45052e6093681955416548773e2b86153f19678d12d0d17a9ce SHA512 05e083174cbb1e3f89fe714cbd302fe435d11ecf443476200df9f5ae026847ffd11e348f002ec7a257085179f8340cbf93f1062553e6538b475272fc629d4a6f
+DIST pytest_lazy_fixtures-1.4.1.tar.gz 63077 BLAKE2B ccb4d5564656daeeecde69d6c978b3b8a9f162eb44ecf31d367251f91b0e2ad60aaa22949db56f1fca5fedb19be21fac65f8c2012cc2816fd7b68dcc531e18c7 SHA512 fcdeae242a33c1f947eb7e5346efac082aebf11b2c94972669ee8e1c88db5e618c55a844c45c62b8dd15b71b82a00e6e94b063e3efa5a64440f54c67aa1389a2
diff --git a/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.4.1.ebuild b/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.4.1.ebuild
new file mode 100644
index 000000000000..1b9b97a817a5
--- /dev/null
+++ b/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.4.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2024-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{12..15} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Allows you to use fixtures in @pytest.mark.parametrize"
+HOMEPAGE="
+ https://github.com/dev-petrov/pytest-lazy-fixtures/
+ https://pypi.org/project/pytest-lazy-fixtures/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+ >=dev-python/pytest-7[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-fixture-classes[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGIN_LOAD_VIA_ENV=1
+EPYTEST_PLUGINS=( "${PN}" )
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+ # test for pytest-deadfixtures compatibility
+ tests/test_deadfixtures_support.py
+)