mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: Add python-sep.
* gnu/packages/astronomy.scm (python-sep): New variable. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
56ec8d6281
commit
d1bd22b9fb
1 changed files with 25 additions and 0 deletions
|
@ -816,6 +816,31 @@ (define-public python-pyerfa
|
|||
functions, so that they can be called with scalar or array inputs.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-sep
|
||||
(package
|
||||
(name "python-sep")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "sep" version))
|
||||
(sha256
|
||||
(base32 "0wxdqn92q1grv8k7xi7h88ac6wnznw4xh5bdlz1vz6za2dgsyj4m"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("cython" ,python-cython)
|
||||
("pytest" ,python-pytest)))
|
||||
(inputs
|
||||
`(("numpy" ,python-numpy)))
|
||||
(home-page "https://github.com/kbarbary/sep")
|
||||
(synopsis "Astronomical source extraction and photometry library")
|
||||
(description
|
||||
"SEP makes the core algorithms of Source Extractor available as a library
|
||||
of stand-alone functions and classes.")
|
||||
(license (list license:bsd-3
|
||||
license:expat
|
||||
license:lgpl3+))))
|
||||
|
||||
(define-public python-skyfield
|
||||
(package
|
||||
(name "python-skyfield")
|
||||
|
|
Loading…
Reference in a new issue