guix-commits
[Top][All Lists]
Advanced

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

08/10: gnu: Add python-geojson.


From: guix-commits
Subject: 08/10: gnu: Add python-geojson.
Date: Fri, 28 Jan 2022 17:52:44 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 977a6c5769145f86bed96c0c0a9f9ddce76df93d
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Tue Jan 11 11:28:17 2022 +0100

    gnu: Add python-geojson.
    
    * gnu/packages/python-xyz.scm (python-geojson): New variable.
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a8aff94334..fc1ff5c80d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11642,6 +11642,28 @@ asyncio.")
 Python code formatter \"black\".")
     (license license:expat)))
 
+(define-public python-geojson
+  (package
+    (name "python-geojson")
+    (version "2.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "geojson" version))
+       (sha256
+        (base32 "12k5bzqskvq3gqzkryarhdjl0df47y5k9cf8r3clasi2wjnbfjvf"))))
+    (build-system python-build-system)
+    (arguments
+     ;; https://github.com/jazzband/geojson/issues/175
+     `(#:tests? #f))
+    (home-page "https://github.com/jazzband/geojson";)
+    (synopsis "Python bindings and utilities for GeoJSON")
+    (description
+     "This package provides Python bindings and utilities for
+@uref{http://geojson.org/, GeoJSON}, a format for encoding geographic data
+structures.")
+    (license license:bsd-3)))
+
 (define-public python-get-version
   (package
     (name "python-get-version")



reply via email to

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