guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 12519ecd9c38f157948db34c83912359edda0445
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Sep 13 16:57:00 2025 +0200
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 <[email protected]>
---
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 78c1ee20d7..b5c435afd0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10139,11 +10139,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))