gentoo/dev-python/url-normalize/url-normalize-2.2.1.ebuild
Michał Górny b9330fb1fb
dev-python/url-normalize: Stabilize 2.2.1 ALLARCHES, #956912
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-05-31 11:59:06 +02:00

35 lines
707 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_11 python3_{11..14} )
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"
}