dev-python/environs: Bump to 15.1.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-08-01 08:03:58 +02:00
parent 3f5e731169
commit e4ff0e303b
2 changed files with 44 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST environs-15.0.1.tar.gz 36385 BLAKE2B 14d5e3a7f75027d275008af5bf8a3fae146b50ee249f98f105d5117acf230ad532cead7cfaa7ba922306da7fc8d3d5231126b4f140e56f20b7c0b529c68a9a93 SHA512 510ff5de019a9656b3d84a674e2096c8e62149671c6e93ada6b61165681a3ed31641dedd9910fe48007352ee43db7c9e6cd01ec52df4259a2f2e95b07d4c9918
DIST environs-15.0.1.tar.gz.provenance 9338 BLAKE2B 591cea55878c76c4dac4d8aa8b8f9d72f2cd0f67b9fa06198440632936f5d39a7fd235fd50717cd4a3616ac8b37595d082330bf17c6138a9a6e406e14912e8e0 SHA512 11bf77d764b789bc630747868444f055f9b97cda350ce2666e31c7b08bd065ad0f6388bf40e5da28a71607a9a0419aa9db84306b3af408c9b9178fbef26b917c
DIST environs-15.1.0.tar.gz 36593 BLAKE2B 2e5ab532cf813923ca623efa365bb79b6f9459dd3ba6379140d2454cc123f217788ba4228796cf0c9227e228cd2773a5fea14a8b775ee703e9330f9ce4c4e136 SHA512 727d49b0da511d789e17176253b35def9e0af8ffd2b7023252eeff6513f36b9e37a6e7b0314937cc56263ab91689727ebec52c8aa9d7f9dbd450bf8f2585c306
DIST environs-15.1.0.tar.gz.provenance 9605 BLAKE2B fd45b5be370471c0290ab45f3f49fce7a9e11e699e4a82c34504a7f95fd7265aed5450ccc7a1a290589fd5b7af22a881424634b5b00135a1222096cc8dfa8ece SHA512 e4e5ec84b2beed267d4d3ebdbcacb2e61ac837e2ba54228628eb541e0b9822db3ff537424d1fad63a8206e917d6b1079f31df1161eba6e945bd3ba49690adcb7

View File

@@ -0,0 +1,42 @@
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=flit-core
PYPI_VERIFY_REPO=https://github.com/sloria/environs
PYTHON_COMPAT=( python3_{12..15} )
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
}