pythonPackages.google-auth: fix darwin aarch64 build
This commit is contained in:
parent
4e630bb272
commit
027787bb53
1 changed files with 9 additions and 0 deletions
|
@ -59,6 +59,15 @@ buildPythonPackage rec {
|
|||
"test_request_headers"
|
||||
"test_request_error"
|
||||
"test_request_basic"
|
||||
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
||||
# E MemoryError: Cannot allocate write+execute memory for ffi.callback().
|
||||
# You might be running on a system that prevents this.
|
||||
# For more information, see https://cffi.readthedocs.io/en/latest/using.html#callbacks
|
||||
"test_configure_mtls_channel_with_callback"
|
||||
"test_configure_mtls_channel_with_metadata"
|
||||
"TestDecryptPrivateKey"
|
||||
"TestMakeMutualTlsHttp"
|
||||
"TestMutualTlsAdapter"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue