gnu: python-sip: Update to 4.19.11.

* gnu/packages/qt.scm (python-sip): Update to 4.19.11.
[arguments]: Substitute INVOKE for SYSTEM*. Add flag to build private
sip module PyQt5.sip.
master
Efraim Flashner 2018-07-04 16:04:56 +03:00
parent f79c7e9747
commit e3232b2627
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 7 deletions

View File

@ -1597,7 +1597,7 @@ message.")))
(define-public python-sip
(package
(name "python-sip")
(version "4.19.8")
(version "4.19.11")
(source
(origin
(method url-fetch)
@ -1606,7 +1606,7 @@ message.")))
"sip-" version "/sip-" version ".tar.gz"))
(sha256
(base32
"1g4pq9vj753r2s061jc4y9ydzgb48ibhc9bdvmb8mlyllwp7mbvy"))))
"1q2rirsh4616r20kw7csagzcnwahiqsr2r9q0ycnd58fa569pm36"))))
(build-system gnu-build-system)
(native-inputs
`(("python" ,python-wrapper)))
@ -1631,11 +1631,11 @@ message.")))
(lib (string-append out "/lib/python"
python-major+minor
"/site-packages")))
(zero?
(system* "python" "configure.py"
"--bindir" bin
"--destdir" lib
"--incdir" include))))))))
(invoke "python" "configure.py"
"--sip-module" "PyQt5.sip" ; for python-pyqt
"--bindir" bin
"--destdir" lib
"--incdir" include)))))))
(home-page "https://www.riverbankcomputing.com/software/sip/intro")
(synopsis "Python binding creator for C and C++ libraries")
(description