mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: labelme: Loosen Python requirements.
* gnu/packages/image-processing.scm (labelme)[arguments]: Patch setup.py so it does not require a specific version of Matplotlib.
This commit is contained in:
parent
5fb1ba880f
commit
14bc2ce43a
1 changed files with 6 additions and 0 deletions
|
@ -1271,6 +1271,12 @@ segmentation.")
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'loosen-requirements
|
||||
(lambda _
|
||||
;; Don't require an outdated version of matplotlib.
|
||||
(substitute* "setup.py"
|
||||
(("matplotlib<3\\.3")
|
||||
"matplotlib"))))
|
||||
(add-before 'check 'start-xserver
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((xorg-server (assoc-ref inputs "xorg-server")))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue