lilyp pushed a commit to branch master
in repository guix.

commit 4fe503b35b3679683e430d86084765aec0399f21
Author: Adam Faiz <[email protected]>
AuthorDate: Sat Feb 15 09:44:43 2025 +0800

    gnu: Add python-neteria.
    
    * gnu/packages/game-development.scm (python-neteria): New variable.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/game-development.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index fdd4931a2c..b73868c04c 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2022 dan <[email protected]>
 ;;; Copyright © 2022 Cairn <[email protected]>
 ;;; Copyright © 2023, 2024 John Kehayias <[email protected]>
+;;; Copyright © 2022-2023, 2025 Adam Faiz <[email protected]>
 ;;; Copyright © 2024 Nicolas Graves <[email protected]>
 ;;; Copyright © 2024 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2025 Sharlatan Hellseher <[email protected]>
@@ -678,6 +679,25 @@ GUI toolkit, lighting and physics frameworks and 
@code{Tiled} TMX format
 support.")
     (license license:lgpl3+)))
 
+(define-public python-neteria
+  (package
+    (name "python-neteria")
+    (version "1.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "neteria" version))
+       (sha256
+        (base32 "1azlix80a6vns2i3z0bdbqk32kx8s2gjh2nvshab235fd9h85yv7"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-rsa))
+    (home-page "https://pypi.org/project/neteria/";)
+    (synopsis "Simple game networking library")
+    (description
+     "This package provides a game networking framework for Python.")
+    (license license:gpl3+)))
+
 (define-public slade
   (package
     (name "slade")

Reply via email to