me
/
guix
Archived
1
0
Fork 0

gnu: python-skyfield: Update to 1.47.

* gnu/packages/astronomy.scm (python-skyfield): Update to 1.47.
[inputs]: Remove python-certifi, python-jplephem, python-numpy, and python-sgp4.
[propagated-inputs]: Add python-certifi, python-jplephem, python-numpy, and python-sgp4.

Change-Id: If5a9a47077edcebe83449c4c54a49189dea61c5a
master
Sharlatan Hellseher 2024-01-15 20:16:08 +00:00
parent 324bc1ea8f
commit 884bddc26c
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 9 additions and 6 deletions

View File

@ -4485,20 +4485,23 @@ astronomical images, especially when there is no WCS information available.")
(define-public python-skyfield
(package
(name "python-skyfield")
(version "1.46")
(version "1.47")
(source
(origin
(method url-fetch)
(uri (pypi-uri "skyfield" version))
(sha256
(base32 "1r4kpsh1pa4h3diyxy3gyapp0rykfjdqmn5w348a2ck2qkdlx997"))))
(base32 "0272pwk88csmrrl44fc4l52agd68pkg4zbmdhs7gliq5q9wf3hrs"))))
(build-system python-build-system)
(arguments
;; NOTE: (Sharlatan-20210207T163305+0000): tests depend on custom test
;; framework https://github.com/brandon-rhodes/assay
;; XXX: Tests depend on custom test framework
;; https://github.com/brandon-rhodes/assay
`(#:tests? #f))
(inputs
(list python-certifi python-jplephem python-numpy python-sgp4))
(propagated-inputs
(list python-certifi
python-jplephem
python-numpy
python-sgp4))
(home-page "https://rhodesmill.org/skyfield/")
(synopsis "Astronomy for Python")
(description