diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-24 16:49:02 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-31 12:24:11 +0000 |
| commit | b5159db2ce22a4e6e3c96a0bce8f3a34cc05d799 (patch) | |
| tree | aac6510dc1c6f10ee21fe2db626bb1be21a2a0fd /gnu/packages/image-processing.scm | |
| parent | 4ce3182d41315ed8e7beb753934d7572d18b4cb6 (diff) | |
gnu: python-pims: Fix build.
* gnu/packages/image-processing.scm (python-pims)
[arguments]<#:phases>: Add phase 'relax-requirements.
[native-inputs]: Remove python-wheel.
Change-Id: Icec0ee0744cd326f1bbd2f320b63fa067cea7e8b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/image-processing.scm')
| -rw-r--r-- | gnu/packages/image-processing.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index fc1ef17a074..03ae68a85b2 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -1990,11 +1990,16 @@ segmentation.") ;; these tests. '(list "--ignore=pims/tests/test_common.py" "--ignore=pims/tests/test_imseq.py" - "--ignore=pims/tests/test_norpix.py"))) + "--ignore=pims/tests/test_norpix.py") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "setup.py" + (("'slicerator>=.*',") + "'slicerator',"))))))) (native-inputs - (list python-pytest - python-setuptools - python-wheel)) + (list python-pytest python-setuptools)) (propagated-inputs (list python-imageio python-numpy python-slicerator)) (home-page "https://github.com/soft-matter/pims") |
