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:
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

View file

@ -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)