From 47fac5dc59c481e1ffc442f80e46ad7f8df4965b Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 18 May 2022 00:57:37 -0400 Subject: 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 --- guix/build/python-build-system.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guix/build') diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm index 08871f60cd..26ba744aca 100644 --- a/guix/build/python-build-system.scm +++ b/guix/build/python-build-system.scm @@ -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) -- cgit v1.2.3