diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-13 17:12:07 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-07 15:00:19 +0100 |
commit | 85774dc46a456e1dcbc70b1ebea0ae5666c70c3c (patch) | |
tree | a7e8e11e7f4292f2cfb6af4a0c99d69b20b58603 /gnu/packages/image-processing.scm | |
parent | 4e5b7a6d956d0a836d5559d16b6e344415655afd (diff) |
gnu: insight-toolkit: Extend with (pyproject-guile-json).
* gnu/packages/image-processing.scm (insight-toolkit)[arguments]
<#:phases>: Extend with (pyproject-guile-json).
Change-Id: I49eb6f6b97872e0742b002c354db660bde2fd211
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/image-processing.scm')
-rw-r--r-- | gnu/packages/image-processing.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index 6f57c3a557..a485cbea1c 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -1367,6 +1367,7 @@ libraries designed for computer vision research and implementation.") "-DBUILD_TESTING=OFF") #:phases + (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (add-after 'unpack 'do-not-tune (lambda _ @@ -1426,7 +1427,7 @@ libraries designed for computer vision research and implementation.") (lambda* (#:key inputs outputs tests? #:allow-other-keys) (when tests? (py:add-installed-pythonpath inputs outputs) - (invoke "python3" "-c" "import itk"))))))) + (invoke "python3" "-c" "import itk")))))))) (inputs (list eigen expat fftw |