guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a0473409a0f55803d4d9c3b4e842187c46e07f91
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 0c63e302cb..653c0fc543 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6356,9 +6356,11 @@ library with bug fixtures.")
(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")