dev-python/superqt: add 0.7.3

Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
This commit is contained in:
Nowa Ammerlaan 2025-05-19 16:37:25 +02:00
parent fed2988f3e
commit f26429d676
No known key found for this signature in database
GPG Key ID: A2E2304370447E8E
2 changed files with 51 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST superqt-0.7.0.tar.gz 97558 BLAKE2B 7210f0b96858a78d6798fbf19ff260d9954ced05f2e82902acc6c897fef64dd604282a435c2a8d06c085bbc88f286e5ac93682e7bf08c1c332646842e389f2be SHA512 3594ecff511285f7df0a44be5f6fb97128a2724c0d90053a3fa008f47237dee294ad062997053abcba6d54ddb73a0c21f9a0f51e824ebf22cad97e686d5e54c1
DIST superqt-0.7.3.tar.gz 105916 BLAKE2B 3d75abf420c55140bdbf071419ca790fdec17773cd4796fb63cc721bfc5fb8e501aa1cf67f83e918c2b0758c35a7ced217c995b0631903317f423bde3ce7c151 SHA512 87ddf00c77c896da17054664c0cb3c3cd372c773b8cc9eaf8079feef1ef6e5d52df40ae1367abaf9e2a6f0ded9b560b4147c98fd362d22b064f877ddbe8b74b9

View File

@ -0,0 +1,50 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{11..13} )
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 ~arm64"
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
tests/test_iconify.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
}