mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add python-multipledispatch.
* gnu/packages/python-xyz.scm (python-multipledispatch): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
2a32c99b38
commit
0ace339cbe
1 changed files with 19 additions and 0 deletions
|
@ -27381,6 +27381,25 @@ (define-public python-pyan3
|
|||
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 `(("python-six" ,python-six)))
|
||||
(home-page "https://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"))
|
||||
|
|
Loading…
Reference in a new issue