summaryrefslogtreecommitdiff
path: root/dev-python/clickdc/clickdc-0.1.1.ebuild
blob: 9894ae3e95364b3d1a884ccf7fce558e60b3dba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )

inherit distutils-r1 pypi

DESCRIPTION="Define click command line options from a python dataclass"
HOMEPAGE="
	https://github.com/Kamilcuk/clickdc
	https://pypi.org/project/clickdc/
"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"

RDEPEND="
	dev-python/click[${PYTHON_USEDEP}]
	dev-python/typing-extensions[${PYTHON_USEDEP}]
"
BDEPEND="
	test? (
		dev-python/pydantic[${PYTHON_USEDEP}]
	)
"

EPYTEST_DESELECT=(
	# Irrevelant downstream, unpackaged pyright
	"tests/test_typing.py"
)
EPYTEST_PLUGINS=()
distutils_enable_tests pytest

PATCHES=(
	"${FILESDIR}"/clickdc-0.1.1-click-8.2.patch
)

python_prepare_all() {
	# workaround setuptools-git-versioning
	sed -e "/^\[project\]/aversion = \"${PV}\"" \
		-e '/^dynamic =/ s/"version", //' \
		-i pyproject.toml || die

	distutils-r1_python_prepare_all
}