diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-04-20 10:55:26 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-04-21 14:00:23 +0200 |
commit | f978300d5d97a92ccc70e3ea44649bb2f31d5ee0 (patch) | |
tree | 33199cc66b5181d55caf444e4f547e6ec34ddff4 | |
parent | d064f2cd7c54aed12eb190f4d75dc5a5363275f4 (diff) | |
download | guix-f978300d5d97a92ccc70e3ea44649bb2f31d5ee0.tar.gz guix-f978300d5d97a92ccc70e3ea44649bb2f31d5ee0.zip |
gnu: python-pillow-heif: Update to 0.22.0.
* gnu/packages/python-xyz.scm (python-pillow-heif): Update to 0.22.0.
[arguments]: Drop #:test-flags.
[native-inputs]: Add python-pylint.
Move python-setuptools after python-pytest.
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7f539634d1..b4f6152928 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11865,21 +11865,14 @@ a general image processing tool.") (define-public python-pillow-heif (package (name "python-pillow-heif") - (version "0.21.0") + (version "0.22.0") (source (origin (method url-fetch) (uri (pypi-uri "pillow_heif" version)) (sha256 - (base32 "16xl2a51z4rjfy7y8vnn3w0ngcr1mr2sgsl9p7z62payy2zy3bh7")))) + (base32 "16mkap63d14f69105b3bm8pi64fvpdznncgn48vhgls0jf977m31")))) (build-system pyproject-build-system) - (arguments - (list - #:test-flags - #~(list "-k" - (string-append - "not test_heif_read_images[image_path25]" - " and not test_heif_read_images[image_path49]")))) (inputs (list libheif)) (propagated-inputs (list python-pillow)) (native-inputs (list opencv ; for opencv-python @@ -11888,9 +11881,10 @@ a general image processing tool.") python-numpy python-packaging python-pre-commit + python-pylint python-pympler - python-setuptools python-pytest + python-setuptools python-wheel)) (home-page "https://github.com/bigcat88/pillow_heif") (synopsis "Python interface for libheif library") |