gnu: python-pyqtwebengine: Use 'python-version'.
* gnu/packages/qt.scm (python-pyqtwebengine)[arguments]: Add (guix build python-build-system) to #:modules. Adjust #:imported-modules accordingly. Rewrite #:phases to use it instead of rolling their own, or hard-coding.master
parent
fbfaba8a7c
commit
67950de7e8
|
@ -2040,6 +2040,9 @@ contain over 620 classes.")
|
||||||
("qtwebengine" ,qtwebengine)))
|
("qtwebengine" ,qtwebengine)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((srfi srfi-1)
|
`(#: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)
|
,@%gnu-build-system-modules)
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -2050,13 +2053,8 @@ contain over 620 classes.")
|
||||||
(pyqt-sipdir (string-append
|
(pyqt-sipdir (string-append
|
||||||
(assoc-ref inputs "python-pyqt") "/share/sip"))
|
(assoc-ref inputs "python-pyqt") "/share/sip"))
|
||||||
(python (assoc-ref inputs "python"))
|
(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"
|
(lib (string-append out "/lib/python"
|
||||||
python-major+minor
|
(python-version python)
|
||||||
"/site-packages/PyQt5"))
|
"/site-packages/PyQt5"))
|
||||||
(stubs (string-append lib "/PyQt5")))
|
(stubs (string-append lib "/PyQt5")))
|
||||||
|
|
||||||
|
@ -2075,7 +2073,9 @@ contain over 620 classes.")
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((__init__.py (string-append
|
(let* ((__init__.py (string-append
|
||||||
(assoc-ref outputs "out")
|
(assoc-ref outputs "out")
|
||||||
"/lib/python3.7/site-packages/PyQt5/__init__.py")))
|
"/lib/python"
|
||||||
|
(python-version (assoc-ref inputs "python"))
|
||||||
|
"/site-packages/PyQt5/__init__.py")))
|
||||||
(with-output-to-file __init__.py
|
(with-output-to-file __init__.py
|
||||||
(lambda _ (display "
|
(lambda _ (display "
|
||||||
from pkgutil import extend_path
|
from pkgutil import extend_path
|
||||||
|
|
Reference in New Issue