dev-python/superqt: add 0.7.6

Closes: https://bugs.gentoo.org/962745
Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
This commit is contained in:
Nowa Ammerlaan
2025-09-13 09:32:14 +02:00
parent d6f0c9a6f8
commit d5799bed2c
2 changed files with 51 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST superqt-0.7.3.tar.gz 105916 BLAKE2B 3d75abf420c55140bdbf071419ca790fdec17773cd4796fb63cc721bfc5fb8e501aa1cf67f83e918c2b0758c35a7ced217c995b0631903317f423bde3ce7c151 SHA512 87ddf00c77c896da17054664c0cb3c3cd372c773b8cc9eaf8079feef1ef6e5d52df40ae1367abaf9e2a6f0ded9b560b4147c98fd362d22b064f877ddbe8b74b9
DIST superqt-0.7.6.tar.gz 107043 BLAKE2B 9f14fabe78a2d079e059ac97cc6f98b341ec00080776599e1e030e7b94d91db514293a185c75d2aa3a43d5ef05940b5d9de7b113688fd0289cf9bafbbec91e44 SHA512 64c1facfe14ce9b5b01d9e7b2798b79615c564f2275ae11d62be90a8ad4454f00fef23f80ff96ae9ca8fbcc112fac00871ea81d82419f7ba1f5112b6d923aa07

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
}