From 017519b67e5f4b3e204eda9e0126348e44fdc9da Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 15 Nov 2025 20:37:18 +0000 Subject: [PATCH] gnu: Add python-glue-geospatial. * gnu/packages/astronomy.scm (python-glue-geospatial): New variable. Change-Id: Ie6529b4b80c4758e3f12e260c687e8f98b575edc --- gnu/packages/astronomy.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 43c2c2b4e68..9104f07896e 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5075,6 +5075,32 @@ astronomy-specific functionality") across many files.") (license license:bsd-3))) +(define-public python-glue-geospatial + (package + (name "python-glue-geospatial") + (version "0.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "glue-geospatial" version)) + (sha256 + (base32 "1mn71zqsrxlg9gp5czmvw5k523ddvwp42mlx6fqvm5ahw42yhqaj")))) + (build-system pyproject-build-system) + (native-inputs + (list python-mock + python-pytest + python-setuptools)) + (propagated-inputs + (list python-affine + python-glue-core + python-pyproj + python-rasterio)) + (home-page "https://github.com/glue-viz/glue-geospatial") + (synopsis "Glue plugin to support satellite imagery") + (description + "This package provides a Glue plugin for geospatial imagery.") + (license license:bsd-3))) + (define-public python-glue-qt (package (name "python-glue-qt")