guix_mirror_bot pushed a commit to branch astro-update
in repository guix.
commit c64894b39eb831eefb617560294f87f9ab89482a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 20 21:16:37 2026 +0100
gnu: python-suntime: Update to 1.4.0.
* gnu/packages/astronomy.scm (python-suntime): Update to 1.4.0.
[arguments] <test-backend>: Use custom to drop Pytest from closure.
[native-inputs]: Remove python-pytest.
---
gnu/packages/astronomy.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 8dbcf69663e..379760b5e13 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -13006,22 +13006,22 @@ analyze spectrogram data.")
(define-public python-suntime
(package
(name "python-suntime")
- (version "1.3.2")
+ (version "1.4.0")
(source
(origin
- (method git-fetch) ; no tests data in the PyPI tarball
+ (method git-fetch)
(uri (git-reference
- (url "https://github.com/SatAgro/suntime")
- (commit (string-append "v" version))))
+ (url "https://github.com/SatAgro/suntime")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "145jqwnl8frg49981xcli1l13h73m40gkbnpwa88lhva03j7y1k2"))))
+ (base32 "1rl0bn80z7gbiqan6i45gryxv4xw5kpbzv29hjk8675mmidk516m"))))
(build-system pyproject-build-system)
(arguments
- (list #:test-flags #~(list "tests.py")))
+ (list #:test-backend #~'custom
+ #:test-flags #~(list "tests.py")))
(native-inputs
- (list python-pytest
- python-setuptools))
+ (list python-setuptools))
(propagated-inputs
(list python-dateutil))
(home-page "https://github.com/SatAgro/suntime")