diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 17:35:00 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 17:46:26 +0000 |
| commit | 414b5be69dafd0caeeef3168a448bead6ca65e56 (patch) | |
| tree | de1fc79e0fcd3398b63ac15d8988f5b4e27693a6 /gnu/packages | |
| parent | ae1b9536ea4d78b5ec0c83a9267116fa73a08a63 (diff) | |
gnu: Add python-decopatch.
* gnu/packages/python-xyz.scm (python-decopatch): New variable.
Change-Id: I396e68c5fedb2849c3d76a274824881360050ae8
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0dfd70cfe3f..28c745d5cab 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -732,6 +732,31 @@ fullscreen terminal rendering, and keyboard input event reporting.") "This package allows to detect if the user is using Dark Mode.") (license license:bsd-3))) +(define-public python-decopatch + (package + (name "python-decopatch") + (version "1.4.10") + (source + (origin + (method url-fetch) + (uri (pypi-uri "decopatch" version)) + (sha256 + (base32 "082pnnc7a1d7rk40k7m72w7kw8dk7g8m3yzq4cn1hl217z4ljzwm")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;XXX: cycles with python-pytest-cases + (native-inputs + (list python-setuptools + python-setuptools-scm)) + (propagated-inputs + (list python-makefun)) + (home-page "https://github.com/smarie/python-decopatch") + (synopsis "Create decorators easily in Python") + (description + "This package provide implements a functionality to simplify writing +decorators in Python.") + (license license:bsd-3))) + (define-public python-distance (let ((commit "ad7f9dc7e9b0e88a08d0cefd1442f4ab1dd1779b") (revision "0")) |
