Files
gentoo/dev-python/qrcode/qrcode-7.4.2.ebuild
Petr Vaněk bbe2e69c56 dev-python/qrcode: enable py3.13
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
2024-06-10 13:49:58 +02:00

45 lines
1.0 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="QR Code generator on top of PIL"
HOMEPAGE="
https://github.com/lincolnloop/python-qrcode/
https://pypi.org/project/qrcode/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~loong ~riscv x86"
# optional deps:
# - pillow and lxml for svg backend, set as hard deps
RDEPEND="
dev-python/lxml[${PYTHON_USEDEP}]
>=dev-python/pillow-9.1.0[${PYTHON_USEDEP}]
dev-python/pypng[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# sys.stdout is not properly mocked, see
# https://github.com/lincolnloop/python-qrcode/pull/364
qrcode/tests/test_script.py::ScriptTest::test_factory
qrcode/tests/test_script.py::ScriptTest::test_pipe
# release process-specific tests, broken on py3.12
qrcode/tests/test_release.py
)
src_install() {
distutils-r1_src_install
doman doc/qr.1
}