Files
guru/dev-python/anyio/anyio-2.1.0.ebuild
Andrew Ammerlaan bf7a1a9a6d dev-python/anyio: drop x86
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
2021-04-13 14:27:23 +02:00

65 lines
1.6 KiB
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
# Build with USE="-doc" first because of circular dependency
# otherwise one gets the error that sphinx-autodoc-typehints
# does not support py3.9
# DOCS_BUILDER="sphinx"
# DOCS_DIR="docs"
# DOCS_DEPEND="
# dev-python/anyio
# >=dev-python/sphinx-autodoc-typehints-1.2.0
# dev-python/sphinx_rtd_theme
# "
# DOCS_AUTODOC=1
inherit distutils-r1 #docs
DESCRIPTION="Compatibility layer for multiple asynchronous event loop implementations"
HOMEPAGE="
https://github.com/agronholm/anyio
https://pypi.org/project/anyio
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
# This is a mess
RESTRICT="test"
RDEPEND="
>=dev-python/curio-1.4[${PYTHON_USEDEP}]
>=dev-python/idna-2.8[${PYTHON_USEDEP}]
>=dev-python/sniffio-1.1[${PYTHON_USEDEP}]
>=dev-python/trio-0.16[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' python3_7)
"
BDEPEND="
${RDEPEND}
test? (
>=dev-python/hypothesis-4.0[${PYTHON_USEDEP}]
>=dev-python/pytest-6.0[${PYTHON_USEDEP}]
dev-python/trustme[${PYTHON_USEDEP}]
dev-python/uvloop[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
python_test() {
distutils_install_for_testing
pytest -vv \
--deselect tests/test_sockets.py::test_getaddrinfo[asyncio] \
--deselect tests/test_sockets.py::test_getaddrinfo[asyncio+uvloop] \
--deselect tests/test_sockets.py::test_getaddrinfo[curio] \
--deselect tests/test_sockets.py::test_getaddrinfo[trio] \
|| die
}