diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:58:58 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:54 +0000 |
commit | 244818e66168443af0f1e002fb5c5c6375b9b18c (patch) | |
tree | 87fd49a2c057e968b7d3ddcda4dfbc08c65b4c99 /gnu/packages | |
parent | 4deb5242ccbd45bedc30e9c41de8e33e4b7ec87b (diff) | |
download | gnu-guix-244818e66168443af0f1e002fb5c5c6375b9b18c.tar gnu-guix-244818e66168443af0f1e002fb5c5c6375b9b18c.tar.gz |
gnu: Add python-munkres3.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d076bc925f..c157b730a5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15745,3 +15745,23 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (synopsis "A linter for YAML files.") (description "A linter for YAML files.") (license #f))) + +(define-public python-munkres3 + (package + (name "python-munkres3") + (version "1.0.5.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "munkres3" version)) + (sha256 + (base32 + "1kyc4nqrff1zri6ky96s4msls7263jy8rp7hid2q1dcnjb9i1hgp")))) + (build-system python-build-system) + (home-page + "http://github.com/datapublica/munkres") + (synopsis + "munkres algorithm for the Assignment Problem. Python 3 port.") + (description + "munkres algorithm for the Assignment Problem. Python 3 port.") + (license #f))) |