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:
Andreas Enge 2016-07-25 23:19:01 +02:00
parent 95af24a2f1
commit 4a8c35e143
No known key found for this signature in database
GPG Key ID: F7D5C9BF765C61E3
1 changed files with 27 additions and 0 deletions

View File

@ -910,6 +910,33 @@ contain over 620 classes.")
(inputs
`(("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
(package (inherit python-pyqt)
(name "python-pyqt")