commit: 4d4022d44058645a7c6d1e6ae4f28f8ab404d69e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 13 03:09:21 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 13 03:09:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d4022d4
dev-python/pytest-lazy-fixtures: Bump to 1.2.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest-lazy-fixtures/Manifest | 1 +
.../pytest-lazy-fixtures-1.2.0.ebuild | 32 ++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/pytest-lazy-fixtures/Manifest
b/dev-python/pytest-lazy-fixtures/Manifest
index d3f35b64b808..55b8036a60fb 100644
--- a/dev-python/pytest-lazy-fixtures/Manifest
+++ b/dev-python/pytest-lazy-fixtures/Manifest
@@ -1 +1,2 @@
DIST pytest_lazy_fixtures-1.1.4.tar.gz 7426 BLAKE2B
31b60ced8c9a1d7f6da128f1f70fe52baec92745496d68b5b64adf17108d304f94aa21f8511c5df4cc4e988e92764cc53f93bff3cb20334a1f76ef8299333db0
SHA512
d8547df290741dbafad43dffc08de05423240d27d30534169e51d44465794e57664331298cdfab291ec1cbed93b03e58887eec5b89e78b4dd3c96bbaaa8b4536
+DIST pytest_lazy_fixtures-1.2.0.tar.gz 32602 BLAKE2B
28710fd5c8a9c805de500af3bd474437a2c41ef5b9bcee4fe1fb9b4a1fc95c58d280f10ded722f25b08b14df5649854a1fa67ec587360c6a3fe190579d1bfc3c
SHA512
7ba9c61fde2ee61fdf1a728c9aa59749e25c4ad7478ef28ae8afdec7e02e0d0f24ab3c8d30275ba564adbaf7357a056ffd4e634d13e4e2a505d14646c6941c6d
diff --git a/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.2.0.ebuild
b/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.2.0.ebuild
new file mode 100644
index 000000000000..5a8821143419
--- /dev/null
+++ b/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.2.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2024-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="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}]
+"
+
+EPYTEST_PLUGIN_LOAD_VIA_ENV=1
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_PLUGINS=( pytest-lazy-fixtures )
+ epytest
+}