Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
898 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
isPy3k,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "munkres";
version = "1.1.4";
format = "setuptools";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "fc44bf3c3979dada4b6b633ddeeb8ffbe8388ee9409e4d4e8310c2da1792db03";
};
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";
})
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "http://bmc.github.com/munkres/";
description = "Munkres algorithm for the Assignment Problem";
license = licenses.bsd3;
maintainers = [ ];
};
}