summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-17 11:24:50 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-21 13:16:23 +0100
commit4fd4692f5884a9e9a1ba6363335ebfaab6769098 (patch)
tree87c3da45548144a791caa8655dafd092657965cd /gnu
parent7762a18591031e4e9e1f452d7b967495804481ec (diff)
gnu: python-qasync: Correct native-inputs.
* gnu/packages/python-xyz.scm (python-qasync) [arguments]{build-backend}: Drop them. [native-inputs]: Replace python-poetry-core by python-uv-build. Relates-to: guix/guix!10610 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 93c1bdc812d..c29f036e253 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22032,14 +22032,13 @@ PySide, PySide2.")
22032 (build-system pyproject-build-system) 22032 (build-system pyproject-build-system)
22033 (arguments 22033 (arguments
22034 (list 22034 (list
22035 #:build-backend "poetry.core.masonry.api" ;XXX: python-uv-build is required
22036 #:phases 22035 #:phases
22037 #~(modify-phases %standard-phases 22036 #~(modify-phases %standard-phases
22038 (add-before 'check 'set-qpa 22037 (add-before 'check 'set-qpa
22039 (lambda _ 22038 (lambda _
22040 (setenv "QT_QPA_PLATFORM" "offscreen")))))) 22039 (setenv "QT_QPA_PLATFORM" "offscreen"))))))
22041 (native-inputs 22040 (native-inputs
22042 (list python-poetry-core python-pytest)) 22041 (list python-pytest python-uv-build))
22043 (propagated-inputs 22042 (propagated-inputs
22044 (list python-pyqt-6)) 22043 (list python-pyqt-6))
22045 (home-page "https://github.com/CabbageDevelopment/qasync") 22044 (home-page "https://github.com/CabbageDevelopment/qasync")