diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 16:56:33 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-07 15:00:18 +0100 |
commit | 30de54b5fa3b9e1524e52b063cddcdbf5d1a0696 (patch) | |
tree | 8f951c299b073c030d6bb6ee4ddbbeea45b1e62b /gnu/packages/python-xyz.scm | |
parent | e63d73126e1ad82181372b7c761f6cee907f3216 (diff) |
gnu: python-orjson: Extend with (pyproject-guile-json).
* gnu/packages/python-xyz.scm (python-orjson)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: If76da1021cd035828bf5c365c01ac0f94e96d2c1
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 9a019494ef..78c1ee20d7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5729,11 +5729,12 @@ help formatter.") ((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-orjson))) |