emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#60507: closed ([PATCH] gnu: Add python-haversine.)


From: GNU bug Tracking System
Subject: bug#60507: closed ([PATCH] gnu: Add python-haversine.)
Date: Mon, 30 Jan 2023 22:41:02 +0000

Your message dated Mon, 30 Jan 2023 23:40:01 +0100
with message-id <87edrbwsse.fsf_-_@gnu.org>
and subject line Re: bug#60507: [PATCH] gnu: Add python-haversine.
has caused the debbugs.gnu.org bug report #60507,
regarding [PATCH] gnu: Add python-haversine.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
60507: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60507
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-haversine. Date: Mon, 2 Jan 2023 19:24:11 -0600
* gnu/packages/geo.scm (python-haversine): New variable.
---
 gnu/packages/geo.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 2185af7a98..3b80b3e1e3 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2788,6 +2788,34 @@ (define-public python-geopy
 using third-party geocoders and other data sources.")
     (license license:expat)))
 
+(define-public python-haversine
+  (package
+    (name "python-haversine")
+    (version "2.7.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    ;; There are no tests in the PyPi archive.
+                    (url "https://github.com/mapado/haversine";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0inxyj5n4jzgg5xiadqx9sk83gdx5ff989l9s04smdzbd3b8c0c8"))))
+    (build-system python-build-system)
+    (native-inputs (list python-pytest python-numpy))
+    (arguments
+      (list #:phases
+            #~(modify-phases %standard-phases
+                (replace 'check
+                  (lambda* (#:key tests? inputs #:allow-other-keys)
+                   (when tests?
+                     (invoke "pytest")))))))
+    (home-page "https://github.com/mapado/haversine";)
+    (synopsis "Calculate the distance between 2 points on Earth.")
+    (description "Calculate the distance between 2 points on Earth.")
+    (license license:expat)))
+
 (define-public gplates
   (package
     (name "gplates")
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#60507: [PATCH] gnu: Add python-haversine. Date: Mon, 30 Jan 2023 23:40:01 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
jgart <jgart@dismail.de> skribis:

> * gnu/packages/geo.scm (python-haversine): New variable.

Applied, thanks!

Ludo’.


--- End Message ---

reply via email to

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