mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: pyqt: Add versions based on non-modular Qt 5.5.
* gnu/packages/qt.scm (python-pyqt-5.5, python2-pyqt-5.5): New variables.
This commit is contained in:
parent
95af24a2f1
commit
4a8c35e143
1 changed files with 27 additions and 0 deletions
|
@ -910,6 +910,33 @@ (define-public python2-pyqt
|
||||||
(inputs
|
(inputs
|
||||||
`(("python" ,python-2)))))
|
`(("python" ,python-2)))))
|
||||||
|
|
||||||
|
(define-public python-pyqt-5.5
|
||||||
|
(package (inherit python-pyqt)
|
||||||
|
(version "5.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "mirror://sourceforge/pyqt/PyQt5/"
|
||||||
|
"PyQt-" version "/PyQt-gpl-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"056qmkv02wdcfblqdaxiswrgn4wa88sz22i1x58dpb1iniavplfd"))
|
||||||
|
(patches (search-patches "pyqt-configure.patch"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-sip" ,python-sip)
|
||||||
|
("qt" ,qt)))))
|
||||||
|
|
||||||
|
(define-public python2-pyqt-5.5
|
||||||
|
(package (inherit python-pyqt-5.5)
|
||||||
|
(name "python2-pyqt")
|
||||||
|
(native-inputs
|
||||||
|
`(("python-sip" ,python2-sip)
|
||||||
|
("qt" ,qt)))
|
||||||
|
(inputs
|
||||||
|
`(("python" ,python-2)))))
|
||||||
|
|
||||||
(define-public python-pyqt-4
|
(define-public python-pyqt-4
|
||||||
(package (inherit python-pyqt)
|
(package (inherit python-pyqt)
|
||||||
(name "python-pyqt")
|
(name "python-pyqt")
|
||||||
|
|
Loading…
Reference in a new issue