mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: python-pyqt: Build with more qt modules.
* gnu/packages/qt.scm (python-pyqt)[inputs]: Add qtbase, qtconnectivity, qtdeclarative, qtlocation, qtmultimedia, qtsensors, qtserialport, qtsvg, qttools, qtwebchannel, qtwebkit, qtwebsockets, qtx11extras, qtxmlpatterns. (python2-pyqt)[inputs]: Same. (python-pyqt@4)[inputs]: Only use python.
This commit is contained in:
parent
2df3d147ef
commit
e9adcd81b1
1 changed files with 18 additions and 2 deletions
|
@ -992,7 +992,21 @@ (define-public python-pyqt
|
|||
`(("python-sip" ,python-sip)
|
||||
("qtbase" ,qtbase))) ; for qmake
|
||||
(inputs
|
||||
`(("python" ,python-wrapper)))
|
||||
`(("python" ,python-wrapper)
|
||||
("qtbase" ,qtbase)
|
||||
("qtconnectivity" ,qtconnectivity)
|
||||
("qtdeclarative" ,qtdeclarative)
|
||||
("qtlocation" ,qtlocation)
|
||||
("qtmultimedia" ,qtmultimedia)
|
||||
("qtsensors" ,qtsensors)
|
||||
("qtserialport" ,qtserialport)
|
||||
("qtsvg" ,qtsvg)
|
||||
("qttools" ,qttools)
|
||||
("qtwebchannel" ,qtwebchannel)
|
||||
("qtwebkit" ,qtwebkit)
|
||||
("qtwebsockets" ,qtwebsockets)
|
||||
("qtx11extras" ,qtx11extras)
|
||||
("qtxmlpatterns" ,qtxmlpatterns)))
|
||||
(arguments
|
||||
`(#:modules ((srfi srfi-1)
|
||||
,@%gnu-build-system-modules)
|
||||
|
@ -1044,7 +1058,8 @@ (define-public python2-pyqt
|
|||
`(("python-sip" ,python2-sip)
|
||||
("qtbase" ,qtbase)))
|
||||
(inputs
|
||||
`(("python" ,python-2)))))
|
||||
`(("python" ,python-2)
|
||||
,@(alist-delete "python" (package-inputs python-pyqt))))))
|
||||
|
||||
(define-public python-pyqt-5.5
|
||||
(package (inherit python-pyqt)
|
||||
|
@ -1120,6 +1135,7 @@ (define-public python-pyqt-4
|
|||
(native-inputs
|
||||
`(("python-sip" ,python-sip)
|
||||
("qt" ,qt-4)))
|
||||
(inputs `(("python" ,python-wrapper)))
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
#:modules ((srfi srfi-1)
|
||||
|
|
Loading…
Reference in a new issue