diff options
author | Julien Roy <julien@jroy.ca> | 2024-11-23 00:49:54 -0500 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2024-11-23 01:14:45 -0500 |
commit | bbd5b26aa10694abd8760ad89acdff6227f4e1de (patch) | |
tree | e78222db4117fc64e1722ed6f470411703cf85b8 /dev-python/asgiref/asgiref-3.8.1.ebuild | |
parent | afd58674f9c634a821aaa13a1c4a6f1a8eada0c6 (diff) | |
download | wger-overlay-bbd5b26aa10694abd8760ad89acdff6227f4e1de.tar.gz wger-overlay-bbd5b26aa10694abd8760ad89acdff6227f4e1de.tar.bz2 wger-overlay-bbd5b26aa10694abd8760ad89acdff6227f4e1de.zip |
dev-python/asgiref: new package, add 3.8.1
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'dev-python/asgiref/asgiref-3.8.1.ebuild')
-rw-r--r-- | dev-python/asgiref/asgiref-3.8.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/asgiref/asgiref-3.8.1.ebuild b/dev-python/asgiref/asgiref-3.8.1.ebuild new file mode 100644 index 0000000..630fe8b --- /dev/null +++ b/dev-python/asgiref/asgiref-3.8.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..13} ) +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 + +inherit distutils-r1 pypi + +DESCRIPTION="ASGI specification and utilities " +HOMEPAGE=" + https://github.com/django/asgiref + https://pypi.org/project/asgiref +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/typing-extensions-4.0.0[${PYTHON_USEDEP}] + + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/mypy[${PYTHON_USEDEP}] + ) +" +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest |