From 7c250bf676fb448a2ff187ac8c69e1f088211762 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 4 Jul 2025 12:32:04 +0200 Subject: [PATCH] python3Packages.vector: skip failing tests --- pkgs/development/python-modules/vector/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/vector/default.nix b/pkgs/development/python-modules/vector/default.nix index f39a670a898a..36bfa60eb3ea 100644 --- a/pkgs/development/python-modules/vector/default.nix +++ b/pkgs/development/python-modules/vector/default.nix @@ -59,7 +59,19 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; disabledTests = - lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ + [ + # AssertionErrors in sympy tests + "test_lorentz_object" + "test_lorentz_sympy" + "test_rhophi_eta_t" + "test_rhophi_eta_tau" + "test_xy_eta_t" + "test_xy_eta_tau" + + # AssertionError: assert array([2.]) == array([-2.]) + "test_issue_443" + ] + ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ # Fatal Python error: Segmentation fault # numba/typed/typeddict.py", line 185 in __setitem__ "test_method_transform2D"