guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 3977a94d71e1b3f3d00bfb4cd1a10ab52eaf8ed5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 31 21:24:15 2025 +0000
gnu: python-gpxpy: Fix tests.
* gnu/packages/python-xyz.scm (python-gpxpy):
[arguments] <test-backend>: Use 'unittest.
[native-inputs]: Remove python-wheel.
Change-Id: I7ad1b1c9d98b56d3e22257e8fee008a7d1ee7a9f
---
gnu/packages/python-xyz.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cc7a0ed6bf..97ce65d9fc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17331,8 +17331,10 @@ structures.")
(sha256
(base32 "1bh1dkrbmcqb46r7j4fazzq7j6zfr2f04frm6h4bhhpcjx5lhb57"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'unittest))
(native-inputs
- (list python-setuptools python-wheel))
+ (list python-setuptools))
(home-page "https://github.com/tkrajina/gpxpy")
(synopsis "Python GPX parser")
(description "GPX file parser and GPS track manipulation library.")