guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#63139] [PATCH python 19/20] gnu: Add python-makefun.


From: John Kehayias
Subject: [bug#63139] [PATCH python 19/20] gnu: Add python-makefun.
Date: Fri, 28 Apr 2023 05:52:04 +0000

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e468844ff6..94c0e1ab81 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24905,6 +24905,24 @@ (define-public python-construct
 make your work easier.")
     (license license:expat)))

+(define-public python-makefun
+  (package
+    (name "python-makefun")
+    (version "1.15.1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "makefun" version))
+              (sha256
+               (base32
+                "19a8dga8rnmjn5gy1cy1wdi28swbkdkypwbqikbxil6ynqcg3c20"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools-scm python-pytest))
+    (home-page "https://smarie.github.io/python-makefun";)
+    (synopsis "Small library to dynamically create Python functions.")
+    (description "A library to dynamically create Python functions with a
+proper signature.")
+    (license license:bsd-3)))
+
 (define-public python-outcome
   (package
     (name "python-outcome")
--
2.39.2







reply via email to

[Prev in Thread] Current Thread [Next in Thread]