diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 17:01:14 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-10-17 12:04:47 +0200 |
commit | 31b9765584b137f07c10dc1e8af7015a849635a5 (patch) | |
tree | cbf9cc5bc6de57f1f55428b116b0148d7cadbb75 | |
parent | cd06fc055d834307c5d511f0a9af28155f2a0399 (diff) |
gnu: python-clarabel: Extend with (pyproject-guile-json).
* gnu/packages/python-xyz.scm (python-clarabel)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: I258bc867cc4269779ccf886601a00323b8f80083
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-science.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 22ee57c4b1..56c801cbc0 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -573,11 +573,12 @@ written in C.") ((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)))) #:features '(list "python") #:install-source? #false)) (inputs |