diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 16:58:25 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-07 15:00:19 +0100 |
commit | 7540eea0b943ceb17aedbede746a80e12b07c1a9 (patch) | |
tree | 316b695876c216c2558669862fc7cb1d8871dff2 /gnu/packages/python-xyz.scm | |
parent | 6519f36eb51130beb8fb1359a68c5edd00714c26 (diff) |
gnu: python-rpds-py: Extend with (pyproject-guile-json).
* gnu/packages/python-xyz.scm (python-rpds-py)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: I39ba227211450ae8de98c76af12102f8972c9020
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 c17f4cf367..c986fae2ec 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39300,11 +39300,12 @@ etc. to check code that uses @code{orjson}.") ((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)) (inputs (cons maturin (cargo-inputs 'python-rpds-py))) |