Files
gentoo/dev-python/url-normalize/url-normalize-3.0.0.ebuild
Michał Górny 74fbce49f7 dev-python/url-normalize: Enable py3.15
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2026-06-30 15:19:06 +02:00

35 lines
674 B
Bash

# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..15} )
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}]
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {
epytest -o addopts= -m "not socket"
}