summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-12 16:09:48 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:53 +0100
commitf229f007ef7631434785b252f26fe19264f35bb3 (patch)
tree73e367416e1106ca1c691831f0a12e8a575eab2e /gnu/packages/python-xyz.scm
parentec2375d2dc739d448d91583bb08c4466e79a262d (diff)
gnu: python-imagesize: Set test-backend.
* gnu/packages/python-xyz.scm (python-imagesize) [arguments] <test-backend>: Set to 'unittest. Change-Id: I3bdc531fc38f6b9b2ab5f461f89dcfba4d71f696
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e26479319d..19a99f480c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25269,10 +25269,12 @@ Werman's implementation of the Earth Mover's Distance.")
(method url-fetch)
(uri (pypi-uri "imagesize" version))
(sha256
- (base32
- "0jndjx26p8qibrx997p3kb6vfbqbdxkv74jsrkav177vmx2085b9"))))
+ (base32 "0jndjx26p8qibrx997p3kb6vfbqbdxkv74jsrkav177vmx2085b9"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (arguments (list #:test-backend #~'unittest))
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
(home-page "https://github.com/shibukawa/imagesize_py")
(synopsis "Gets image size of files in various formats in Python")
(description