mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pillow-simd: Disable one broken test.
* gnu/packages/python-xyz.scm (python-pillow-simd)[build-system]: Use pyproject-build-system. [arguments]: Disable failing test_sanity test; copy only the 'patch-ldconfig phase from python-pillow, drop the custom 'check phase. Change-Id: Ic9a4f76ebcdc7aba21231aecd641930cf5f5b4de
This commit is contained in:
parent
6a626eb83b
commit
9a42b1547d
1 changed files with 12 additions and 0 deletions
|
@ -10444,6 +10444,18 @@ a general image processing tool.")
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "13wwq7slw2q9djh7n39qdmlrzd9k3x7hdr36wk8qbgp3b6bcgvj6"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; This test fails because it cannot find the zlib version string
|
||||
;; "1.3.1".
|
||||
#:test-flags '(list "-k not test_sanity")
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-ldconfig
|
||||
(lambda _
|
||||
(substitute* "setup.py"
|
||||
(("\\['/sbin/ldconfig', '-p'\\]") "['true']")))))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs python-pillow)
|
||||
(prepend libraqm libimagequant)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue