dev-python/zeep: fix 4.2.1 Signed-off-by: Andreas Billmeier <b@edevau.net>
53 lines
1.5 KiB
Bash
53 lines
1.5 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A modern/fast Python SOAP client based on lxml / requests"
|
|
HOMEPAGE="https://docs.python-zeep.org/"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 x86"
|
|
IUSE="async"
|
|
|
|
RDEPEND="
|
|
>=dev-python/attrs-17.2.0[${PYTHON_USEDEP}]
|
|
>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
|
|
>=dev-python/lxml-4.6.0[${PYTHON_USEDEP}]
|
|
>=dev-python/platformdirs-1.4.0[${PYTHON_USEDEP}]
|
|
>=dev-python/requests-file-1.5.1[${PYTHON_USEDEP}]
|
|
>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]
|
|
>=dev-python/requests-toolbelt-0.7.1[${PYTHON_USEDEP}]
|
|
dev-python/pytz[${PYTHON_USEDEP}]
|
|
async? ( >=dev-python/httpx-0.15.0[${PYTHON_USEDEP}] )
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/aiohttp[${PYTHON_USEDEP}]
|
|
dev-python/aioresponses[${PYTHON_USEDEP}]
|
|
dev-python/freezegun[${PYTHON_USEDEP}]
|
|
dev-python/mock[${PYTHON_USEDEP}]
|
|
dev-python/pretend[${PYTHON_USEDEP}]
|
|
dev-python/xmlsec[${PYTHON_USEDEP}]
|
|
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
|
dev-python/pytest-httpx[${PYTHON_USEDEP}]
|
|
dev-python/requests-mock[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
EPYTEST_DESELECT=(
|
|
# broken by new pytest-httpx?
|
|
tests/test_async_transport.py::test_load
|
|
tests/test_async_transport.py::test_load_cache
|
|
tests/test_async_transport.py::test_post
|
|
tests/test_async_transport.py::test_http_error
|
|
)
|