me
/
guix
Archived
1
0
Fork 0

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>
master
jgart 2022-05-18 00:57:37 -04:00 committed by Maxim Cournoyer
parent 07ea07c6cc
commit 47fac5dc59
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,8 @@ without errors."
(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)