diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 16:57:00 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-07 15:00:18 +0100 |
commit | 12519ecd9c38f157948db34c83912359edda0445 (patch) | |
tree | 09f58c886a9009d634202f13d896dc447e6cf273 /gnu/packages/python-xyz.scm | |
parent | 30de54b5fa3b9e1524e52b063cddcdbf5d1a0696 (diff) |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
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)) |