gentoo/dev-python/url-normalize/url-normalize-2.2.1.ebuild
Arthur Zamarin 2b31917524
dev-python/url-normalize: enable py3.14
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-05-13 21:58:14 +03:00

35 lines
712 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"
}