From 77787905e73bf06917f61ace2414034ca7bb4cc6 Mon Sep 17 00:00:00 2001 From: Audrey Dutcher Date: Sun, 17 Nov 2024 18:15:55 -0700 Subject: [PATCH] python3Packages.cffi: disable a test on FreeBSD --- pkgs/development/python-modules/cffi/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/cffi/default.nix b/pkgs/development/python-modules/cffi/default.nix index 1d4a498167b8..6597dd4749d0 100644 --- a/pkgs/development/python-modules/cffi/default.nix +++ b/pkgs/development/python-modules/cffi/default.nix @@ -53,6 +53,11 @@ else nativeCheckInputs = [ pytestCheckHook ]; + disabledTests = lib.optionals stdenv.hostPlatform.isFreeBSD [ + # https://github.com/python-cffi/cffi/pull/144 + "test_dlopen_handle" + ]; + meta = with lib; { changelog = "https://github.com/python-cffi/cffi/releases/tag/v${version}"; description = "Foreign Function Interface for Python calling C code";