From d3287c48bb665ac08e95b9e65bc21c79c4207894 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 11 Jan 2022 11:28:17 +0100 Subject: [PATCH 1/3] gnu: Add python-geojson. * gnu/packages/python-xyz.scm (python-geojson): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 302a81b4f5..2f7616bbe5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11155,6 +11155,25 @@ (define-public python-pytest-black 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 "Python bindings and utilities for GeoJSON") + (license license:bsd-3))) + (define-public python-get-version (package (name "python-get-version") -- 2.34.0