guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 16e3655868fbb880ad8802013d9c14092162d6d1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Sep 19 01:57:21 2026 +0100

    gnu: Add python-xmod.
    
    * gnu/packages/python-xyz.scm (python-xmod): New variable.
---
 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 97e9b4c0670..f1f9d19e8cc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -42940,6 +42940,28 @@ similar XML files, in the same way the @command{diff} 
utility does it.")
 Library.")
     (license license:expat)))
 
+(define-public python-xmod
+  (package
+    (name "python-xmod")
+    (version "1.10.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/rec/xmod";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0a2ywlfa0s4aqs1yag9xirv69029xmw307mbfqz7vhy8dadc2z30"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-hatchling python-pytest))
+    (home-page "https://rec.github.io/xmod/";)
+    (synopsis "Turn any object into a module")
+    (description
+     "@code{xmod} is a tiny library that lets a module to do things that
+normally only a class could do.")
+    (license license:expat)))
+
 (define-public python-xmp-toolkit
   (package
     (name "python-xmp-toolkit")

Reply via email to