mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
build-system: python: Accept pyproject package-with-explicit-python.
* guix/build-system/python.scm (package-with-explicit-python): Accept pyproject-build-system resolved lazily. Change-Id: I6e4186b8a7d2ec17afbf6af7d0f9e709cc55e14b Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
bf7bea493b
commit
8a156ad99c
1 changed files with 4 additions and 1 deletions
|
|
@ -103,7 +103,10 @@ pre-defined variants."
|
|||
=> force)
|
||||
|
||||
;; Otherwise build the new package object graph.
|
||||
((eq? (package-build-system p) python-build-system)
|
||||
((or (eq? (package-build-system p) python-build-system)
|
||||
(eq? (package-build-system p)
|
||||
;; Resolve lazily.
|
||||
(@* (guix build-system pyproject) pyproject-build-system)))
|
||||
(package/inherit p
|
||||
(location (package-location p))
|
||||
(name (let ((name (package-name p)))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue