From 759c416b4f86efa92073dc0670cad7d7f8928490 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 13 Sep 2025 16:57:00 +0200 Subject: [PATCH] gnu: python-pydantic-core: Extend with (pyproject-guile-json). * gnu/packages/python-xyz.scm (python-pydantic-core)[arguments] <#:phases>: Extend with (pyproject-guile-json). Change-Id: Ifa061c9408a6f67988c3fcdc24123fd295a85261 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6d96770b8c58937639485ef36a058ad6ce0567d3..ecd621bccbe545daf262e359f668d20cdcef3706 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9962,11 +9962,12 @@ errors when data is invalid.") ((guix build pyproject-build-system) #:prefix py:) (guix build utils)) #:phases + (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (add-after 'build 'build-python-module (assoc-ref py:%standard-phases 'build)) (add-after 'build-python-module 'install-python-module - (assoc-ref py:%standard-phases 'install))) + (assoc-ref py:%standard-phases 'install)))) #:install-source? #false)) (native-inputs (list maturin python-typing-extensions python-wrapper))