about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-08 16:27:42 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-08 16:27:42 +0100
commit08d449ce6df035fcf7a5c6efb525c32ac0a9e355 (patch)
treee087defb9794fb9d12f7a6e65364585b7515c098 /pkgs/development/python-modules
parentb60b0a223e7335cd99c5e9b1873c68e97711ca17 (diff)
python3Packages.cffi: Disable failing test on darwin
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/cffi/default.nix6
1 files changed, 6 insertions, 0 deletions
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/";