gnu: python-pyqt: Update to 5.6.

* gnu/packages/qt.scm (python-pyqt, python2-pyqt): Update to 5.6.
(python-pyqt)[native-inputs]: Remove qt, add qtbase.
(python2-pyqt)[native-inputs]: Remove qt, add qtbase.
This commit is contained in:
Efraim Flashner 2016-06-05 23:12:38 +03:00
parent 39766868a5
commit 2be0681367
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 5 additions and 5 deletions

View File

@ -521,22 +521,22 @@ module provides support functions to the automatically generated code.")
(define-public python-pyqt (define-public python-pyqt
(package (package
(name "python-pyqt") (name "python-pyqt")
(version "5.5") (version "5.6")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (uri
(string-append "mirror://sourceforge/pyqt/PyQt5/" (string-append "mirror://sourceforge/pyqt/PyQt5/"
"PyQt-" version "/PyQt-gpl-" "PyQt-" version "/PyQt5_gpl-"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"056qmkv02wdcfblqdaxiswrgn4wa88sz22i1x58dpb1iniavplfd")) "1qgh42zsr9jppl9k7fcdbhxcd1wrb7wyaj9lng9nxfa19in1lj1f"))
(patches (search-patches "pyqt-configure.patch")))) (patches (search-patches "pyqt-configure.patch"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("python-sip" ,python-sip) `(("python-sip" ,python-sip)
("qt" ,qt))) ; for qmake ("qtbase" ,qtbase))) ; for qmake
(inputs (inputs
`(("python" ,python-wrapper))) `(("python" ,python-wrapper)))
(arguments (arguments
@ -583,7 +583,7 @@ contain over 620 classes.")
(name "python2-pyqt") (name "python2-pyqt")
(native-inputs (native-inputs
`(("python-sip" ,python2-sip) `(("python-sip" ,python2-sip)
("qt" ,qt))) ("qtbase" ,qtbase)))
(inputs (inputs
`(("python" ,python-2))))) `(("python" ,python-2)))))