mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
python-build-system: Change let* to let in `site-packages'.
* guix/build/python-build-system.scm (site-packages): Change let* to let for readability and since let* is unused. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
07ea07c6cc
commit
47fac5dc59
1 changed files with 2 additions and 2 deletions
|
@ -176,8 +176,8 @@ (define (python-output outputs)
|
|||
|
||||
(define (site-packages inputs outputs)
|
||||
"Return the path of the current output's Python site-package."
|
||||
(let* ((out (python-output outputs))
|
||||
(python (assoc-ref inputs "python")))
|
||||
(let ((out (python-output outputs))
|
||||
(python (assoc-ref inputs "python")))
|
||||
(string-append out "/lib/python" (python-version python) "/site-packages")))
|
||||
|
||||
(define (add-installed-pythonpath inputs outputs)
|
||||
|
|
Loading…
Reference in a new issue