gnu: Add python2-pyqtwebengine.

* gnu/packages/qt.scm (python2-pyqtwebengine): New public variable.
This commit is contained in:
Marius Bakke 2020-06-08 19:13:28 +02:00
parent 4c1ca82487
commit 5ded8494ca
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -2141,6 +2141,25 @@ (define-public python2-pyqt
("python2-enum34" ,python2-enum34)
,@(alist-delete "python" (package-inputs python-pyqt))))))
(define-public python2-pyqtwebengine
(package/inherit
python-pyqtwebengine
(name "python2-pyqtwebengine")
(native-inputs
`(("python" ,python-2)
("python-sip" ,python2-sip)
;; qtbase is required for qmake
("qtbase" ,qtbase)))
(inputs
`(("python" ,python-2)
("python-sip" ,python2-sip)
("python-pyqt" ,python2-pyqt)
("qtbase" ,qtbase)
("qtsvg" ,qtsvg)
("qtdeclarative" ,qtdeclarative)
("qtwebchannel" ,qtwebchannel)
("qtwebengine" ,qtwebengine)))))
(define-public python2-pyqt-4
(package (inherit python-pyqt)
(name "python2-pyqt")