python3Packages.cffi: Disable failing test on darwin

This commit is contained in:
Martin Weinelt 2023-01-08 16:27:42 +01:00
parent b60b0a223e
commit 08d449ce6d
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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/";