guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0906f983e96aad14295c23b035815958a9eaeb77
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Sep 19 02:05:32 2026 +0100

    gnu: Add python-dek.
    
    * gnu/packages/python-xyz.scm (python-dek): New variable.
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f1f9d19e8cc..b08032c4ac2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1376,6 +1376,29 @@ syntax tree}, or calculate the differences between two 
D-Bus APIs.")
 decorators in Python.")
     (license license:bsd-3)))
 
+(define-public python-dek
+  (package
+    (name "python-dek")
+    (version "1.6.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/rec/dek";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "14y4d1vv9w13ng12x0gk1y4gfqn2sqz91r6bf4019gpgr6kvqj8v"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-hatchling python-pytest))
+    (propagated-inputs (list python-xmod))
+    (home-page "https://rec.github.io/dek/";)
+    (synopsis "The decorator-decorator")
+    (description
+     "This package implements a functionality to write a Python decorator
+which takes no parameters isn't hard.")
+    (license license:expat)))
+
 (define-public python-discovery
   (package
     (name "python-discovery")

Reply via email to