diff --git a/dev-python/pytest-lazy-fixtures/Manifest b/dev-python/pytest-lazy-fixtures/Manifest index 7498b199abc2d..fc08f1937123b 100644 --- a/dev-python/pytest-lazy-fixtures/Manifest +++ b/dev-python/pytest-lazy-fixtures/Manifest @@ -2,3 +2,4 @@ DIST pytest_lazy_fixtures-1.1.4.tar.gz 7426 BLAKE2B 31b60ced8c9a1d7f6da128f1f70f DIST pytest_lazy_fixtures-1.2.0.tar.gz 32602 BLAKE2B 28710fd5c8a9c805de500af3bd474437a2c41ef5b9bcee4fe1fb9b4a1fc95c58d280f10ded722f25b08b14df5649854a1fa67ec587360c6a3fe190579d1bfc3c SHA512 7ba9c61fde2ee61fdf1a728c9aa59749e25c4ad7478ef28ae8afdec7e02e0d0f24ab3c8d30275ba564adbaf7357a056ffd4e634d13e4e2a505d14646c6941c6d DIST pytest_lazy_fixtures-1.3.0.tar.gz 33956 BLAKE2B 47954c0368d0082ad519f1e783508ecbb6cb66ce063b8bcc4626adc114d8f7f594d75587eacae9a2a677a678dad3ad7fcae1f4a50488181bad243fc7384873d6 SHA512 4e969dbc9b8badac36fbf5d2ef69949bf2e88a02311a7f6219cdccf7482390290b4a9a96f6a61e49899da5865a6cb0186aed7e21aa352f7908a184e204018376 DIST pytest_lazy_fixtures-1.3.1.tar.gz 34038 BLAKE2B ebeeea7ae80e7f2c38cf69302b46d08e3f20d5b6b6aa2631fb228c80c37e33341c98681fe0a1032d340abe15a61fcc9e9f71a7e4d3a465da6bbd920e538d4299 SHA512 7f6acf252b1e6be4a067017589493a5ea2ac71fb8d90ee72936bf04d876bbf1707116b2b75514415489ce461dfb3320aeac3899c21366201f8914f950b6f5e46 +DIST pytest_lazy_fixtures-1.3.2.tar.gz 34114 BLAKE2B 7c3f53fbd12a6af4de3a7d43364e8a6b0a061e059c784ddbec0a83c6cd95f31f7537e5b60a6b7435a25c0fac49a24574af7df8a22d948be4d4fcec9469f1e2e9 SHA512 a9f5972cd936b2861dfc346b6aa156222ae45f3a2e1f794d9c6e6516dca36fbc5c1b08c9b129d98be4701acaed468bca722d2d7767531ef5c26731829cb044ac diff --git a/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.3.2.ebuild b/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.3.2.ebuild new file mode 100644 index 0000000000000..c34e98676bc06 --- /dev/null +++ b/dev-python/pytest-lazy-fixtures/pytest-lazy-fixtures-1.3.2.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=( "${PN}" ) +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # test for pytest-deadfixtures compatibility + tests/test_deadfixtures_support.py +)