mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
51 lines
1.1 KiB
Bash
51 lines
1.1 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="The little ASGI framework that shines"
|
|
HOMEPAGE="https://www.starlette.io/"
|
|
SRC_URI="
|
|
https://github.com/encode/starlette/archive/${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
dev-python/anyio[${PYTHON_USEDEP}]
|
|
dev-python/itsdangerous[${PYTHON_USEDEP}]
|
|
$(python_gen_cond_dep '
|
|
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
|
' python3_{8,9} )
|
|
"
|
|
BDEPEND="test? ( dev-python/trio[${PYTHON_USEDEP}] )"
|
|
|
|
EPYTEST_IGNORE=(
|
|
# Unpackaged 'databases' dependency
|
|
tests/test_database.py
|
|
|
|
# Unpackaged 'multipart' dependency
|
|
tests/test_formparsers.py
|
|
)
|
|
|
|
EPYTEST_DESELECT=(
|
|
# Unpackaged 'multipart' dependency
|
|
tests/test_requests.py::test_request_form_urlencoded
|
|
)
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
src_prepare() {
|
|
# fix accept-encoding, as new support was added with newer versions
|
|
sed -e '/accept-encoding/s/",/, br&/' -i tests/test_{websockets,requests}.py || die
|
|
|
|
distutils-r1_src_prepare
|
|
}
|