diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 16:57:44 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-07 15:00:18 +0100 |
commit | 73f0e387280f63a850202048914f56ec334c42df (patch) | |
tree | d2239d1c92c5710f7124f703bb44d45a0fb16a9b | |
parent | 12519ecd9c38f157948db34c83912359edda0445 (diff) |
gnu: python-tiktoken: Extend with (pyproject-guile-json).
* gnu/packages/python-xyz.scm (python-tiktoken)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: I94c11b8e85c41f8da8158d691114952df823d8de
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-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 b5c435afd0..c536418afb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13044,6 +13044,7 @@ numpy arrays to TIFF, BigTIFF, and ImageJ hyperstack compatible files.") ((guix build pyproject-build-system) #:prefix py:) (guix build utils)) #:phases + (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (replace 'build (assoc-ref py:%standard-phases 'build)) @@ -13057,7 +13058,7 @@ numpy arrays to TIFF, BigTIFF, and ImageJ hyperstack compatible files.") (assoc-ref py:%standard-phases 'create-entrypoints) (assoc-ref py:%standard-phases 'compile-bytecode))) (replace 'install - (assoc-ref py:%standard-phases 'install))))) + (assoc-ref py:%standard-phases 'install)))))) (propagated-inputs (list python-regex python-requests)) (inputs (cargo-inputs 'python-tiktoken)) (native-inputs |