gnu: Add python-gpxpy.

* gnu/packages/python-xyz.scm (python-gpxpy): New variable.

Change-Id: I70a014dfce7bd021833d42da45e857613621aaa8
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Peter Kannewitz 2024-09-02 15:32:51 +00:00 committed by jgart
parent 9e89185d58
commit 4053d1afc8
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -154,6 +154,7 @@
;;; Copyright © 2024 TakeV <takev@disroot.org>
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
;;; Copyright © 2024 Rick Huijzer <ikbenrickhuyzer@gmail.com>
;;; Copyright © 2024 Peter Kannewitz <petre-vps@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -16182,6 +16183,22 @@ (define-public python-geojson-for-pyowm
;; https://github.com/jazzband/geojson/issues/175
(list #:tests? #f))))
(define-public python-gpxpy
(package
(name "python-gpxpy")
(version "1.6.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "gpxpy" version))
(sha256
(base32 "1bh1dkrbmcqb46r7j4fazzq7j6zfr2f04frm6h4bhhpcjx5lhb57"))))
(build-system pyproject-build-system)
(home-page "https://github.com/tkrajina/gpxpy")
(synopsis "Python GPX parser")
(description "GPX file parser and GPS track manipulation library.")
(license license:asl2.0)))
(define-public wfetch
(let ((commit "e1cfa37814aebc9eb56ce994ebe877b6a6f9a715")
(revision "2"))