From 613d3f87f19f01fbf0b1e17d6b4c87e8a703cc24 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 18 May 2026 00:27:27 +0100 Subject: [PATCH] gnu: Add python-openspace-api. * gnu/packages/astronomy.scm (python-openspace-api): New variable. Change-Id: Idffd14b9600024a31adbb479c25ca498781853c1 --- gnu/packages/astronomy.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index da4b8773540..76ddbd41dfe 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -7373,6 +7373,28 @@ translations.") Astronomy.") (license license:expat))) +(define-public python-openspace-api + (package + (name "python-openspace-api") + (version "0.9.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "openspace_api" version)) + (sha256 + (base32 "02iqkgv3n3xzxkj94pwklll1vba6lnphmlbvbvkbgzkqk34r63ic")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests + (native-inputs + (list python-setuptools)) + (home-page "https://openspaceproject.com") + (synopsis "Python library to interface with OpenSpace using sockets") + (description + "Python library to interface with +@url{https://github.com/OpenSpace/OpenSpace, OpenSpace} using TCP sockets.") + (license license:expat))) + (define-public python-orbitalpy (package (name "python-orbitalpy")