python313Packages.piper-phonemize: fix aarch64-linux build (#407873)

authored by Martin Weinelt and committed by GitHub 4a38acef 917e796d

+4 -1
+4 -1
pkgs/development/python-modules/piper-phonemize/default.nix
··· 1 1 { 2 + lib, 3 + stdenv, 2 4 buildPythonPackage, 3 5 onnxruntime-native, 4 6 piper-phonemize-native, ··· 21 23 piper-phonemize-native.espeak-ng 22 24 ]; 23 25 24 - pythonImportsCheck = [ "piper_phonemize" ]; 26 + # coredump in onnxruntime::logging::Logger& onnxruntime::logging::LoggingManager::DefaultLogger() 27 + pythonImportsCheck = lib.optionals stdenv.hostPlatform.isx86 [ "piper_phonemize" ]; 25 28 26 29 # no tests 27 30 doCheck = false;