blob: da6d0dd5939c9124c02d614cb2687a7fabd52e2f (
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 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi virtualx
DESCRIPTION="Missing widgets and components for PyQt/PySide"
HOMEPAGE="
https://github.com/pyapp-kit/superqt
https://pypi.org/project/superqt/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/pygments-2.4.0[${PYTHON_USEDEP}]
>=dev-python/qtpy-1.1.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-3.7.4.3[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/hatch-vcs[${PYTHON_USEDEP}]
test? (
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pytest-qt[${PYTHON_USEDEP}]
)
"
EPYTEST_IGNORE=(
# pint and pyconify not packaged
tests/test_quantity.py
)
EPYTEST_DESELECT=(
# fails in the sandbox, but works outside of it
tests/test_eliding_label.py::test_wrapped_eliding_label
)
distutils_enable_tests pytest
python_test() {
virtx distutils-r1_python_test
}
|