gnu: python-pillow: Update to 5.4.0
* gnu/packages/python.scm (python-pillow): Update to 5.4.0. [arguments]: Add 'patch-ldconfig' phase.
This commit is contained in:
parent
146c6b62bf
commit
acbf312573
|
@ -4075,14 +4075,14 @@ the OleFileIO module from PIL, the Python Image Library.")
|
||||||
(define-public python-pillow
|
(define-public python-pillow
|
||||||
(package
|
(package
|
||||||
(name "python-pillow")
|
(name "python-pillow")
|
||||||
(version "5.2.0")
|
(version "5.4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "Pillow" version))
|
(uri (pypi-uri "Pillow" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ary9mj2ddllq3lkxgn6aac7qxqiwbcg2pacrl94py58ql9x9czq"))))
|
"0qrkcjszym7ixffg5zphhp8a07w8w11yyc2ylcbdrhwm771z316m"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)))
|
`(("python-pytest" ,python-pytest)))
|
||||||
|
@ -4097,18 +4097,21 @@ the OleFileIO module from PIL, the Python Image Library.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-olefile" ,python-olefile)))
|
`(("python-olefile" ,python-olefile)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases
|
||||||
(add-after
|
(modify-phases %standard-phases
|
||||||
'install 'check-installed
|
(add-after 'unpack 'patch-ldconfig
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.py"
|
||||||
|
(("\\['/sbin/ldconfig', '-p'\\]") "['true']"))))
|
||||||
|
(delete 'check) ; We must run checks after python-pillow is installed.
|
||||||
|
(add-after 'install 'check-installed
|
||||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||||
(begin
|
(begin
|
||||||
(setenv "HOME" (getcwd))
|
(setenv "HOME" (getcwd))
|
||||||
;; Make installed package available for running the
|
;; Make installed package available for running the tests.
|
||||||
;; tests
|
|
||||||
(add-installed-pythonpath inputs outputs)
|
(add-installed-pythonpath inputs outputs)
|
||||||
(invoke "python" "selftest.py" "--installed")
|
(invoke "python" "selftest.py" "--installed")
|
||||||
(invoke "python" "-m" "pytest" "-vv"))))
|
(invoke "python" "-m" "pytest" "-vv")))))))
|
||||||
(delete 'check))))
|
|
||||||
(home-page "https://pypi.python.org/pypi/Pillow")
|
(home-page "https://pypi.python.org/pypi/Pillow")
|
||||||
(synopsis "Fork of the Python Imaging Library")
|
(synopsis "Fork of the Python Imaging Library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue