guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit dfd28f19ea8bd2e54b2f4a7b75479e4d531e603f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jul 12 16:09:48 2025 +0100
gnu: python-imagesize: Set test-backend.
* gnu/packages/python-xyz.scm (python-imagesize) [arguments]
<test-backend>: Set to 'unittest.
Change-Id: I3bdc531fc38f6b9b2ab5f461f89dcfba4d71f696
---
gnu/packages/python-xyz.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a4d5136315..1431c9500c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25350,10 +25350,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