Files
guru/dev-python/pydantic-settings/pydantic-settings-2.8.1.ebuild
Anna (cybertailor) Vyalkova 5f8d40ed85 dev-python/pydantic-settings: enable pypy3_11 and disable pypy3
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-03-25 14:02:47 +05:00

45 lines
1010 B
Bash

# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{11..13} pypy3_11 )
inherit distutils-r1 pypi
DESCRIPTION="Settings management using Pydantic"
HOMEPAGE="
https://pypi.org/project/pydantic-settings/
https://github.com/pydantic/pydantic-settings
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/pydantic-2.7.0[${PYTHON_USEDEP}]
dev-python/pydantic-core[${PYTHON_USEDEP}]
>=dev-python/python-dotenv-0.21.0[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/annotated-types[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/tomli[${PYTHON_USEDEP}]
)
"
EPYTEST_IGNORE=(
# Dependencies not packaged: pytest-examples
tests/test_docs.py
)
EPYTEST_DESELECT=(
tests/test_source_cli.py::test_cli_metavar_format_type_alias_312
)
distutils_enable_tests pytest