From 08d449ce6df035fcf7a5c6efb525c32ac0a9e355 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 8 Jan 2023 16:27:42 +0100 Subject: python3Packages.cffi: Disable failing test on darwin --- pkgs/development/python-modules/cffi/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pkgs/development/python-modules') diff --git a/pkgs/development/python-modules/cffi/default.nix b/pkgs/development/python-modules/cffi/default.nix index 266c3deb56422..07c76f81a4b3f 100644 --- a/pkgs/development/python-modules/cffi/default.nix +++ b/pkgs/development/python-modules/cffi/default.nix @@ -82,6 +82,12 @@ if isPyPy then null else buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; + disabledTests = lib.optionals stdenv.isDarwin [ + # AssertionError: cannot seem to get an int[10] not completely cleared + # https://foss.heptapod.net/pypy/cffi/-/issues/556 + "test_ffi_new_allocator_1" + ]; + meta = with lib; { maintainers = with maintainers; [ domenkozar lnl7 ]; homepage = "https://cffi.readthedocs.org/"; -- cgit 1.4.1