summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2025-02-07 16:10:51 +0800
committerZheng Junjie <z572@z572.online>2025-07-05 22:08:56 +0800
commit0d7ae5ec960ffdc3c312858bbaf55b1d1271144c (patch)
tree0821e90519b0775ea1f4769970079d028e692da1
parenta9b66fa030c2cb234f5eb9b1d16e4c284d2f5bd6 (diff)
gnu: python-pyqtwebengine-6: Update to 6.8.0.
* gnu/packages/qt.scm (python-pyqtwebengine-6): Update to 6.8.0. [source]: Add snippet. Change-Id: I0762235f4e064226716f63526ebeed38b2c69894
-rw-r--r--gnu/packages/qt.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index c4cc9430c5..632a68721f 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -4437,13 +4437,19 @@ itself.")
(define-public python-pyqtwebengine-6
(package
(inherit python-pyqtwebengine)
- (version "6.7.0")
+ (version "6.8.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "PyQt6_WebEngine" version))
(sha256
- (base32 "00ahqmdgyfw21nhymarrskx723fakkkq2s4mvvspbqnrnsnwgvb8"))))
+ (base32 "1wiz5wn84wpb23lm8sphrw56df0ljyp5b3xiqa11i95n4ak5w134"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; Fix missing include for QVariant.
+ '(substitute* "sip/QtWebEngineCore/qwebengineframe.sip"
+ (("#include <qwebengineframe\\.h>" all)
+ (string-append "#include <qvariant.h>\n" all))))))
(native-inputs (list python python-sip python-pyqt-builder
;; qtbase is required for qmake
qtbase))