From b37bab40e59ee2baa41f5d37689d4f13c2b1237d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 Jan 2025 14:27:04 +0100 Subject: [PATCH] python312Packages.pyemd: disable failing tests --- pkgs/development/python-modules/pyemd/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/pyemd/default.nix b/pkgs/development/python-modules/pyemd/default.nix index 583f51d1d37b..4cff9a018ffc 100644 --- a/pkgs/development/python-modules/pyemd/default.nix +++ b/pkgs/development/python-modules/pyemd/default.nix @@ -40,6 +40,12 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; + disabledTests = [ + # Broken with Numpy 2.x, https://github.com/wmayner/pyemd/issues/68 + "test_emd_samples_2" + "test_emd_samples_3" + ]; + meta = with lib; { description = "Python wrapper for Ofir Pele and Michael Werman's implementation of the Earth Mover's Distance"; homepage = "https://github.com/wmayner/pyemd";