gnu: python-skyfield: Match up input and variable names.

* gnu/packages/astronomy.scm (python-skyfield)[inputs]: Add "python-"
prefix to alist keys.
This commit is contained in:
Tobias Geerinckx-Rice 2021-04-27 11:29:35 +02:00
parent 6cf85268af
commit bb9e77b544
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1024,10 +1024,10 @@ (define-public python-skyfield
;; framework https://github.com/brandon-rhodes/assay
`(#:tests? #f))
(inputs
`(("certifi" ,python-certifi)
("jplephem" ,python-jplephem)
("numpy" ,python-numpy)
("sgp4" ,python-sgp4)))
`(("python-certifi" ,python-certifi)
("python-jplephem" ,python-jplephem)
("python-numpy" ,python-numpy)
("python-sgp4" ,python-sgp4)))
(home-page "https://rhodesmill.org/skyfield/")
(synopsis "Astronomy for Python")
(description