munkres: fix tests on 32-bit systems (#105292)

This commit is contained in:
r-burns 2020-11-29 12:53:17 -08:00 committed by GitHub
parent 05d1c49209
commit fb3d81707f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, fetchpatch
, isPy3k
, pytestCheckHook
}:
@ -16,6 +17,15 @@ buildPythonPackage rec {
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";
})
];
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {