gentoo/dev-python/aiohttp-socks/aiohttp-socks-0.10.1.ebuild
Michał Górny 56e9c36938
dev-python/aiohttp-socks: Enable py3.14
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-10-04 19:30:27 +02:00

47 lines
1.1 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
inherit distutils-r1
DESCRIPTION="SOCKS proxy connector for aiohttp"
HOMEPAGE="
https://pypi.org/project/aiohttp-socks/
https://github.com/romis2012/aiohttp-socks/
"
SRC_URI="
https://github.com/romis2012/aiohttp-socks/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 x86"
RDEPEND="
>=dev-python/aiohttp-3.10.0[${PYTHON_USEDEP}]
>=dev-python/python-socks-2.4.3[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/trustme[${PYTHON_USEDEP}]
dev-python/attrs[${PYTHON_USEDEP}]
dev-python/yarl[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]
dev-python/tiny-proxy[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
PATCHES=(
# https://github.com/romis2012/aiohttp-socks/pull/53
# https://github.com/romis2012/aiohttp-socks/commit/0d8800233dc8aa7384abaf02ebf3543d3d2dea97
"${FILESDIR}/${P}-test.patch"
)