gentoo/dev-python/url-normalize/url-normalize-2.2.0.ebuild
Arthur Zamarin 49cc7d821d
dev-python/url-normalize: Stabilize 2.2.0 ALLARCHES, #954035
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-04-19 21:39:03 +03:00

35 lines
713 B
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
inherit distutils-r1
DESCRIPTION="URL normalization for Python"
HOMEPAGE="
https://github.com/niksite/url-normalize/
https://pypi.org/project/url-normalize/
"
SRC_URI="
https://github.com/niksite/url-normalize/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
RDEPEND="
>=dev-python/idna-3.3[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
python_test() {
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -o addopts= -m "not socket"
}