guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/11: gnu: Add python-sep.


From: guix-commits
Subject: 08/11: gnu: Add python-sep.
Date: Fri, 19 Feb 2021 05:07:03 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit d1bd22b9fb17e94931b7ebe23c6d9735b195442a
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Feb 19 10:13:02 2021 +0100

    gnu: Add python-sep.
    
    * gnu/packages/astronomy.scm (python-sep): New variable.
    
    Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
 gnu/packages/astronomy.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 3d12a87..98ef7b3 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -816,6 +816,31 @@ Astronomical Union (IAU).  All C routines are wrapped as 
Numpy universal
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]