mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: python-pyqt: Use PYTHON-VERSION.
* gnu/packages/qt.scm (python-pyqt)[arguments]: Add #:modules. Use PYTHON-VERSION from PYTHON-BUILD-SYSTEM instead of custom implementation.
This commit is contained in:
parent
fd702f8e95
commit
3c48fe3658
1 changed files with 4 additions and 7 deletions
|
@ -1984,7 +1984,10 @@ (define-public python-pyqt
|
|||
("qtxmlpatterns" ,qtxmlpatterns)))
|
||||
(arguments
|
||||
`(#:modules ((srfi srfi-1)
|
||||
((guix build python-build-system) #:select (python-version))
|
||||
,@%gnu-build-system-modules)
|
||||
#:imported-modules ((guix build python-build-system)
|
||||
,@%gnu-build-system-modules)
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; When building python-pyqtwebengine, <qprinter.h> can not be
|
||||
|
@ -2007,14 +2010,8 @@ (define-public python-pyqt
|
|||
(designer (string-append plugins "/designer"))
|
||||
(qml (string-append plugins "/PyQt5"))
|
||||
(python (assoc-ref inputs "python"))
|
||||
(python-version
|
||||
(last (string-split python #\-)))
|
||||
(python-major+minor
|
||||
(string-join
|
||||
(take (string-split python-version #\.) 2)
|
||||
"."))
|
||||
(lib (string-append out "/lib/python"
|
||||
python-major+minor
|
||||
(python-version python)
|
||||
"/site-packages"))
|
||||
(stubs (string-append lib "/PyQt5")))
|
||||
(invoke "python" "configure.py"
|
||||
|
|
Loading…
Reference in a new issue