From a0816fc3641d3527c03908fb89d1aace8c9178be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Lima?= Date: Sat, 18 Oct 2025 16:17:47 +0100 Subject: [PATCH] ceph.python.pkgs.cryptography: disable mem leak tests on all platforms --- .../filesystems/ceph/old-python-packages/cryptography.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/ceph/old-python-packages/cryptography.nix b/pkgs/tools/filesystems/ceph/old-python-packages/cryptography.nix index 38d7e112fa61..f10d285617a7 100644 --- a/pkgs/tools/filesystems/ceph/old-python-packages/cryptography.nix +++ b/pkgs/tools/filesystems/ceph/old-python-packages/cryptography.nix @@ -109,10 +109,12 @@ buildPythonPackage rec { disabledTestPaths = [ # save compute time by not running benchmarks "tests/bench" - ] - ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ # aarch64-darwin forbids W+X memory, but this tests depends on it: # * https://cffi.readthedocs.io/en/latest/using.html#callbacks + # furthermore, this test fails with OpenSSL 3.6.0, probably due to: + # * https://github.com/openssl/openssl/issues/28757 + # * https://github.com/openssl/openssl/issues/28770 + # * https://github.com/openssl/openssl/issues/28888 "tests/hazmat/backends/test_openssl_memleak.py" ];