iyzsong pushed a commit to branch qt-team
in repository guix.
commit 5472af810e63e7e1d65bb95266a0913f44de7473
Author: 宋文武 <[email protected]>
AuthorDate: Fri Feb 7 16:10:51 2025 +0800
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
---
gnu/packages/qt.scm | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 424b70d204..ec1e97d5d4 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -4352,13 +4352,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))