From dd024c2c12118a568e96d5028ed35a3b1d891c67 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 29 Jun 2026 21:13:36 +0000 Subject: [PATCH] python3Packages.usearch: skip failing tests on aarch64-linux --- pkgs/development/python-modules/usearch/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/usearch/default.nix b/pkgs/development/python-modules/usearch/default.nix index c04ce651f768..46691817f450 100644 --- a/pkgs/development/python-modules/usearch/default.nix +++ b/pkgs/development/python-modules/usearch/default.nix @@ -59,6 +59,12 @@ buildPythonPackage { writableTmpDirAsHomeHook ]; + disabledTests = lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ + # Numerical precision error (AssertionError) + "test_index_clustering" + "test_index_retrieval" + ]; + meta = { inherit (pkgs.usearch.meta) description