summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-10-19 12:11:26 +0200
committerAndreas Enge <andreas@enge.fr>2025-10-19 12:11:55 +0200
commitf3399615ebeb53de3f7599c9eeff088576119134 (patch)
treef66873d3dc8e5cf395f95fbb04dae9113c0a0c41 /gnu
parent6aadef6c6675b5b1c6c2b974f500437a8b9c2698 (diff)
gnu: Remove python-pillow-simd.
* gnu/packages/python-xyz.scm (python-pillow-simd): Delete variable. Fixes: guix/guix#2715 Change-Id: I39bb625b6b6911c972654b0bc00a4d8706402f68
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm56
1 files changed, 0 insertions, 56 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8df468136bd..1f82b8e3ea2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12472,62 +12472,6 @@ a general image processing tool.")
and a plugin for Pillow.")
(license license:bsd-3)))
-(define-public python-pillow-simd
- (package
- (name "python-pillow-simd")
- (version "10.0.1.post0")
- (source
- (origin
- (method git-fetch) ;no tests in PyPI tarball
- (uri (git-reference
- (url "https://github.com/uploadcare/pillow-simd")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "16pr4qifb661spf58b7g2lyraask9wf944v4kwk3llg32djvb09b"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- #:test-flags
- ;; Got different content.
- '(list "-k" (string-append "not test_open"
- " and not test_consistency_3x3"
- " and not test_consistency_5x5"
- " and not test_close"))
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'patch-ldconfig
- (lambda _
- (substitute* "setup.py"
- (("\\['/sbin/ldconfig', '-p'\\]") "['true']")))))))
- (native-inputs
- (list python-check-manifest
- python-defusedxml
- python-markdown2
- python-olefile
- python-packaging
- python-pytest
- python-pytest-timeout
- python-setuptools
- python-trove-classifiers))
- (inputs
- (list freetype
- lcms
- libimagequant
- libjpeg-turbo
- libraqm
- libtiff
- libwebp
- openjpeg
- zlib))
- (home-page "https://github.com/uploadcare/pillow-simd")
- (synopsis "Fork of the Python Imaging Library (Pillow)")
- (description "This package is a fork of Pillow which adds support for SIMD
-parallelism.")
- (license (license:x11-style
- "http://www.pythonware.com/products/pil/license.htm"
- "The PIL Software License"))))
-
(define-public python-pixelmatch
(package
(name "python-pixelmatch")