summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-20 21:38:47 +0100
committerAndrew Tropin <andrew@trop.in>2025-08-31 15:24:47 +0700
commit5cf617dbfb92903ceddbef39aab51a977d9ab9fd (patch)
tree32cfabd553b144c842f06ed25eae7b63a5470bf7
parenta554ff5f42645d9bc0647d07a6180a90ae948b7d (diff)
gnu: python-sgp4: Update to 2.25.
* gnu/packages/astronomy.scm (python-sgp4): Update to 2.25. [arguments] <phases>: Use custom 'check. [native-inputs]: Remove python-setuptools and python-wheel; add python-setuptools-next. Change-Id: Ifa727fec0b229d8a37826c8b43d5b2033a45cb62
-rw-r--r--gnu/packages/astronomy.scm15
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 8f01bcf122..96841341ca 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6358,17 +6358,24 @@ library with bug fixtures.")
(define-public python-sgp4
(package
(name "python-sgp4")
- (version "2.24")
+ (version "2.25")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sgp4" version))
(sha256
- (base32 "0ll3gxjf697llh6nvisxnj2h4hl23nq1m24ymsykz8kf4ygj8man"))))
+ (base32 "0x06mxdmk2rsbp7ymjvvbj8pwkf4y2w6g8p0znw9zmi5rinxr7p1"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "sgp4.tests")))))))
(native-inputs
- (list python-setuptools
- python-wheel))
+ (list python-setuptools-next))
(propagated-inputs
(list python-numpy))
(home-page "https://github.com/brandon-rhodes/python-sgp4")