Files
nixpkgs/pkgs/development/python-modules/munkres/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

40 lines
892 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 = {
homepage = "http://bmc.github.com/munkres/";
description = "Munkres algorithm for the Assignment Problem";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}