gentoo/dev-python/pydantic-settings/pydantic-settings-2.14.0.ebuild
Eli Schwartz a5909b39cf
dev-python/pydantic-settings: Keyword 2.14.0 ppc64, #970751
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
2026-04-30 01:43:56 -04:00

40 lines
929 B
Bash

# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYPI_VERIFY_REPO=https://github.com/pydantic/pydantic-settings
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Settings management using Pydantic"
HOMEPAGE="
https://github.com/pydantic/pydantic-settings/
https://pypi.org/project/pydantic-settings/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
RDEPEND="
>=dev-python/pydantic-2.7.0[${PYTHON_USEDEP}]
>=dev-python/python-dotenv-0.21.0[${PYTHON_USEDEP}]
>=dev-python/typing-inspection-0.4.0[${PYTHON_USEDEP}]
"
EPYTEST_PLUGINS=( pytest-mock )
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# TODO; can't repro in venv
tests/test_precedence_and_merging.py::test_merging_preserves_earlier_values
)
EPYTEST_IGNORE=(
# require pytest-examples
tests/test_docs.py
)