Skip to content

Commit 4a38ace

Browse files
authored
python313Packages.piper-phonemize: fix aarch64-linux build (#407873)
2 parents 917e796 + 5cb66f8 commit 4a38ace

File tree

1 file changed

+4
-1
lines changed
  • pkgs/development/python-modules/piper-phonemize

1 file changed

+4
-1
lines changed

pkgs/development/python-modules/piper-phonemize/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
lib,
3+
stdenv,
24
buildPythonPackage,
35
onnxruntime-native,
46
piper-phonemize-native,
@@ -21,7 +23,8 @@ buildPythonPackage {
2123
piper-phonemize-native.espeak-ng
2224
];
2325

24-
pythonImportsCheck = [ "piper_phonemize" ];
26+
# coredump in onnxruntime::logging::Logger& onnxruntime::logging::LoggingManager::DefaultLogger()
27+
pythonImportsCheck = lib.optionals stdenv.hostPlatform.isx86 [ "piper_phonemize" ];
2528

2629
# no tests
2730
doCheck = false;

0 commit comments

Comments
 (0)