2018-10-16 23:36:07 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
2019-03-22 23:00:04 +00:00
|
|
|
, fetchPypi
|
2020-11-29 20:53:17 +00:00
|
|
|
, fetchpatch
|
2019-03-22 23:00:04 +00:00
|
|
|
, 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-29 20:53:17 +00:00
|
|
|
patches = [
|
|
|
|
# Fixes test on 32-bit systems.
|
|
|
|
# Remove if https://github.com/bmc/munkres/pull/41 is merged.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/bmc/munkres/commit/380a0d593a0569a761c4a035edaa4414c3b4b31d.patch";
|
|
|
|
sha256 = "0ga63k68r2080blzi04ajdl1m6xd87mmlqa8hxn9hyixrg1682vb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|