From c465ea96b91a49f11dcb9f2c08ce2701269c0335 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 10 Oct 2021 15:08:52 +0200 Subject: [PATCH] python38Packages.jedi: disable test_init_extension_module on aarch64 --- pkgs/development/python-modules/jedi/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix index c818d9d9ddcd..4e4aa0a94f18 100644 --- a/pkgs/development/python-modules/jedi/default.nix +++ b/pkgs/development/python-modules/jedi/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , pythonOlder , fetchFromGitHub @@ -39,6 +40,9 @@ buildPythonPackage rec { disabledTests = [ # Assertions mismatches with pytest>=6.0 "test_completion" + ] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [ + # AssertionError: assert 'foo' in ['setup'] + "test_init_extension_module" ]; meta = with lib; {