2021-03-02 13:33:49 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
2021-08-02 18:31:48 +03:00
|
|
|
PYTHON_COMPAT=( python3_{8..10} pypy3 )
|
2021-03-02 13:33:49 +03:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="SOCKS proxy connector for aiohttp"
|
2021-08-02 18:31:48 +03:00
|
|
|
HOMEPAGE="https://pypi.org/project/aiohttp-socks/ https://github.com/romis2012/aiohttp-socks"
|
2021-03-02 13:33:49 +03:00
|
|
|
SRC_URI="https://github.com/romis2012/aiohttp-socks/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
2021-04-12 10:10:29 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2021-03-02 13:33:49 +03:00
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
>=dev-python/aiohttp-2.3.2[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/python-socks-1.2.2[${PYTHON_USEDEP}]
|
|
|
|
"
|
|
|
|
BDEPEND="
|
|
|
|
test? (
|
|
|
|
dev-python/flask[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
|
|
|
dev-python/yarl[${PYTHON_USEDEP}]
|
|
|
|
)"
|
|
|
|
|
|
|
|
distutils_enable_tests pytest
|