My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/phonemizer/backend-paths.patch

18 lines
693 B

diff --git a/phonemizer/backend/espeak/wrapper.py b/phonemizer/backend/espeak/wrapper.py
index 84a79f5..8abcae1 100644
--- a/phonemizer/backend/espeak/wrapper.py
+++ b/phonemizer/backend/espeak/wrapper.py
@@ -143,12 +143,7 @@ class EspeakWrapper:
f'is not a readable file')
return library.resolve()
- library = (
- ctypes.util.find_library('espeak-ng') or
- ctypes.util.find_library('espeak'))
- if not library: # pragma: nocover
- raise RuntimeError(
- 'failed to find espeak library')
+ library = '@libespeak@'
return library
def _fetch_version_and_path(self):