guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2f7773b1c6a56cb72920aaa2e2d62a957b6d5c53
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 29 15:05:44 2025 +0100
gnu: python-sgp4: Fix tests.
* gnu/packages/astronomy.scm (python-sgp4):
[arguments] <test-backend>: Use 'custom.
[native-inputs]: Remove python-wheel.
Change-Id: If113cf8bafffdae385aa54f4497665918f681270
---
gnu/packages/astronomy.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 14e0422a9d..c6db5607da 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6771,9 +6771,11 @@ changing the pixel resolution, orientation, coordinate
system.")
(sha256
(base32 "0ll3gxjf697llh6nvisxnj2h4hl23nq1m24ymsykz8kf4ygj8man"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'custom
+ #:test-flags #~(list "-m" "sgp4.tests")))
(native-inputs
- (list python-setuptools
- python-wheel))
+ (list python-setuptools))
(propagated-inputs
(list python-numpy))
(home-page "https://github.com/brandon-rhodes/python-sgp4")