diff options
author | Peter Kannewitz <peter.kannewitz@posteo.net> | 2024-09-02 15:32:51 +0000 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-09-04 09:15:14 -0500 |
commit | 4053d1afc8ed9f7782a5f7a704d99e5ff80ecd64 (patch) | |
tree | 7a006e0986486588d6916ff1a2514cead3f13568 /gnu/packages/python-xyz.scm | |
parent | 9e89185d581959e796c4f5c52ef09cd83a5d3302 (diff) | |
download | guix-4053d1afc8ed9f7782a5f7a704d99e5ff80ecd64.tar.gz guix-4053d1afc8ed9f7782a5f7a704d99e5ff80ecd64.zip |
gnu: Add python-gpxpy.
* gnu/packages/python-xyz.scm (python-gpxpy): New variable.
Change-Id: I70a014dfce7bd021833d42da45e857613621aaa8
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 650220b71c..6bbcf9f7b3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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 @@ structures.") ;; 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")) |