From 09767a7729ad6e71b26895855f4a7e3338c53494 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 27 Dec 2025 16:12:05 +0100 Subject: [PATCH] build-system/pyproject: Using autoload for (json) module. This allows to avoid the `with-extensions` everywhere. * guix/build/pyproject-build-system.scm: Using autoload for (json) module. Change-Id: Ie31579b377df34688a2cd4959f517b734eff5ffa Signed-off-by: Sharlatan Hellseher --- guix/build/pyproject-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build/pyproject-build-system.scm b/guix/build/pyproject-build-system.scm index c562439fb9b..3eae3436834 100644 --- a/guix/build/pyproject-build-system.scm +++ b/guix/build/pyproject-build-system.scm @@ -18,6 +18,7 @@ ;;; along with GNU Guix. If not, see . (define-module (guix build pyproject-build-system) + #:autoload (json builder) (scm->json-string) #:use-module ((guix build gnu-build-system) #:prefix gnu:) #:use-module (guix build utils) #:use-module (guix build toml) @@ -26,7 +27,6 @@ #:use-module (ice-9 format) #:use-module (ice-9 rdelim) #:use-module (ice-9 regex) - #:use-module (json) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (srfi srfi-34)