[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50836] [PATCH 1/5] gnu: Add python-multipledispatch.
From: |
Ryan Prior |
Subject: |
[bug#50836] [PATCH 1/5] gnu: Add python-multipledispatch. |
Date: |
Mon, 27 Sep 2021 02:20:14 +0000 |
* gnu/packages/python-xyz.scm (python-multipledispatch): New variable.
---
gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a34c444a87..c833c95b5a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26584,6 +26584,26 @@ objects in the combined source, and how they define or
use each other. The
graph can be output for rendering by GraphViz or yEd.")
(license license:gpl2)))
+(define-public python-multipledispatch
+ (package
+ (name "python-multipledispatch")
+ (version "0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "multipledispatch" version))
+ (sha256
+ (base32
+ "1slblghfjg9fdi9zpd7gmrkvfbv20nrdgnrymcnbky8bzm8i9ax7"))))
+ (build-system python-build-system)
+ (propagated-inputs `(("six" ,python-six)))
+ (home-page
+ "http://github.com/mrocklin/multipledispatch/")
+ (synopsis "Multiple dispatch for Python based on pattern matching")
+ (description "This library provides an efficient mechanism for overloading
+function implementations based on the types of the arguments.")
+ (license license:bsd-3)))
+
(define-public date2name
(let ((commit "6c8f37277e8ec82aa50f90b8921422be30c4e798")
(revision "1"))
--
2.33.0
- [bug#50836] [PATCH 0/5] Python logic programming packages, Ryan Prior, 2021/09/26
- [bug#50836] [PATCH 1/5] gnu: Add python-multipledispatch.,
Ryan Prior <=
- [bug#50836] [PATCH 4/5] gnu: Add python-etuples., Ryan Prior, 2021/09/26
- [bug#50836] [PATCH 2/5] gnu: Add python-logical-unification., Ryan Prior, 2021/09/26
- [bug#50836] [PATCH 5/5] gnu: Add python-minikanren., Ryan Prior, 2021/09/26
- [bug#50836] [PATCH 3/5] gnu: Add python-cons., Ryan Prior, 2021/09/26
- [bug#50836] [PATCH 1/5] gnu: Add python-multipledispatch., Maxime Devos, 2021/09/27