We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 917e796 + 5cb66f8 commit 4a38aceCopy full SHA for 4a38ace
pkgs/development/python-modules/piper-phonemize/default.nix
@@ -1,4 +1,6 @@
1
{
2
+ lib,
3
+ stdenv,
4
buildPythonPackage,
5
onnxruntime-native,
6
piper-phonemize-native,
@@ -21,7 +23,8 @@ buildPythonPackage {
21
23
piper-phonemize-native.espeak-ng
22
24
];
25
- pythonImportsCheck = [ "piper_phonemize" ];
26
+ # coredump in onnxruntime::logging::Logger& onnxruntime::logging::LoggingManager::DefaultLogger()
27
+ pythonImportsCheck = lib.optionals stdenv.hostPlatform.isx86 [ "piper_phonemize" ];
28
29
# no tests
30
doCheck = false;
0 commit comments