From 718c917ca8d1676e83e938720c3f1a3924238c39 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 17 Jan 2025 15:27:03 +0000 Subject: [PATCH] gnu: python-geographiclib: Update to 2.0. * gnu/packages/geo.scm (python-geographiclib): Update to 2.0. [build-system]: Swap to pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: I066cecab0a6934a5f18867b248b97d7a193c1d36 --- gnu/packages/geo.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 2b8a09e047e07f44d446def31506939f22c62301..c51ff1168f3bcaf1a27014a4ac22b1558555b1c4 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -3408,16 +3408,20 @@ path loss.") (define-public python-geographiclib (package (name "python-geographiclib") - (version "1.50") + (version "2.0") (source (origin (method url-fetch) (uri (pypi-uri "geographiclib" version)) (sha256 (base32 - "0cn6ap5fkh3mkfa57l5b44z3gvz7j6lpmc9rl4g2jny2gvp4dg8j")))) - (build-system python-build-system) - (home-page "https://geographiclib.sourceforge.io/1.50/python/") + "0naql53537dsa6g9lzz1hf688b1vvih6dj2yjcyjs71yvj2irx7p")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) + (home-page "https://geographiclib.sourceforge.io/2.0/python/") (synopsis "Python geodesic routines from GeographicLib") (description "This is a python implementation of the geodesic routines in GeographicLib.")