diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 16:59:39 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-10-17 12:04:46 +0200 |
commit | 70282b451f3d06ba8a57d745614cd8def08ac195 (patch) | |
tree | 9d9c5e41a013d12b982e460ad14375c969e614d5 | |
parent | a0fed7a6b394549c730fac26fa31b5656d84f851 (diff) |
gnu: python-tokenizers: Extend with (pyproject-guile-json).
* gnu/packages/machine-learning.scm (python-tokenizers)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: Idae6f4609393ec1a612b7710dc60c6b7bd8c79a6
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/machine-learning.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 3218676910..03101076a6 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -5501,6 +5501,7 @@ definite approximations of Optimal Transport (Wasserstein) distances. ((guix build pyproject-build-system) #:prefix py:) (guix build utils)) #:phases + (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (add-after 'check 'python-check (lambda _ @@ -5524,7 +5525,7 @@ definite approximations of Optimal Transport (Wasserstein) distances. (copy-file "PKG-INFO" (string-append info "/METADATA")) (copy-recursively "py_src/tokenizers" - (string-append lib "tokenizers")))))))) + (string-append lib "tokenizers"))))))))) (native-inputs (list pkg-config python-minimal python-pytest)) (inputs |