[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/14: gnu: Add python-munkres.
From: |
Leo Famulari |
Subject: |
02/14: gnu: Add python-munkres. |
Date: |
Fri, 18 Mar 2016 18:28:17 +0000 |
lfam pushed a commit to branch master
in repository guix.
commit cedac813a58e6220edc771f112e0d50ab188b0ce
Author: Leo Famulari <address@hidden>
Date: Sun Feb 14 02:00:42 2016 -0500
gnu: Add python-munkres.
* gnu/packages/python.scm (python-munkres, python2-munkres): New variables.
---
gnu/packages/python.scm | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index af3c60b..aab239f 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8233,3 +8233,26 @@ way.")
(inherit (package-with-python2
(strip-python2-variant python-vobject)))
(native-inputs `(("python2-setuptools" ,python2-setuptools)))))
+
+(define-public python-munkres
+ (package
+ (name "python-munkres")
+ (version "1.0.7")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "munkres" version))
+ (sha256
+ (base32
+ "1i6nf45i0kkzdx6k70giybsqxz4dxsjbrkrfqgjd7znfkf25sjik"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:tests? #f)) ; no test suite
+ (home-page "http://software.clapper.org/munkres/")
+ (synopsis "Implementation of the Munkres algorithm")
+ (description "The Munkres module provides an implementation of the Munkres
+algorithm (also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
+useful for solving the Assignment Problem.")
+ (license bsd-3)))
+
+(define-public python2-munkres
+ (package-with-python2 python-munkres))
- branch master updated (0e0fd3e -> 3bf429a), Leo Famulari, 2016/03/18
- 10/14: gnu: Add python-mpd2., Leo Famulari, 2016/03/18
- 12/14: gnu: Add python2-unicodecsv., Leo Famulari, 2016/03/18
- 04/14: gnu: Add python-flask., Leo Famulari, 2016/03/18
- 06/14: gnu: Add python-pylast., Leo Famulari, 2016/03/18
- 07/14: gnu: Add python-cookies., Leo Famulari, 2016/03/18
- 11/14: gnu: Add python-jellyfish., Leo Famulari, 2016/03/18
- 09/14: gnu: Add python2-pathlib., Leo Famulari, 2016/03/18
- 02/14: gnu: Add python-munkres.,
Leo Famulari <=
- 03/14: gnu: Add python-musicbrainzngs., Leo Famulari, 2016/03/18
- 14/14: gnu: Add beets., Leo Famulari, 2016/03/18
- 01/14: gnu: Add python-mutagen., Leo Famulari, 2016/03/18
- 13/14: gnu: Add python-rarfile., Leo Famulari, 2016/03/18
- 08/14: gnu: Add python-responses., Leo Famulari, 2016/03/18
- 05/14: gnu: Add python-pyechonest., Leo Famulari, 2016/03/18