Install this version:
emerge -a =dev-python/environs-15.0.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/environs-15.0.1
Or alternatively:
emerge --autounmask-write -a =dev-python/environs-15.0.1
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=flit
PYPI_VERIFY_REPO=https://github.com/sloria/environs
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 pypi
DESCRIPTION="Python library for simplified environment variable parsing"
HOMEPAGE="
https://github.com/sloria/environs/
https://pypi.org/project/environs/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
RDEPEND="
dev-python/python-dotenv[${PYTHON_USEDEP}]
>=dev-python/marshmallow-4.0.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/django-cache-url[${PYTHON_USEDEP}]
dev-python/dj-database-url[${PYTHON_USEDEP}]
dev-python/dj-email-url[${PYTHON_USEDEP}]
)
"
DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {
unset A
epytest
}
dev-python/python-dotenv[] >=dev-python/marshmallow-4.0.0[]
test? ( dev-python/django-cache-url[] dev-python/dj-database-url[] dev-python/dj-email-url[] )