2018-10-16 23:36:07 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
2019-03-22 23:00:04 +00:00
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
2020-11-05 23:26:41 +00:00
|
|
|
, pytestCheckHook
|
2018-10-16 23:36:07 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "munkres";
|
2020-10-25 09:06:53 +00:00
|
|
|
version = "1.1.4";
|
2018-10-16 23:36:07 +01:00
|
|
|
|
2019-03-22 23:00:04 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 09:06:53 +00:00
|
|
|
sha256 = "fc44bf3c3979dada4b6b633ddeeb8ffbe8388ee9409e4d4e8310c2da1792db03";
|
2018-10-16 23:36:07 +01:00
|
|
|
};
|
|
|
|
|
2020-11-05 23:26:41 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2018-10-16 23:36:07 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://bmc.github.com/munkres/";
|
2018-10-16 23:36:07 +01:00
|
|
|
description = "Munkres algorithm for the Assignment Problem";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|