wyoming-faster-whisper: init at 0.0.3

Wyoming Server for Faster Whisper, a reimplementation of OpenAI's
Whisper model using CTranslate2.
This commit is contained in:
Martin Weinelt 2023-06-09 18:02:42 +02:00
parent 3e235f99b9
commit dd8a4a6eb8
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,29 @@
diff --git a/setup.py b/setup.py
index 1c0b2d2..bbff1d1 100644
--- a/setup.py
+++ b/setup.py
@@ -35,4 +35,9 @@ setup(
"Programming Language :: Python :: 3.10",
],
keywords="rhasspy wyoming whisper",
+ entry_points={
+ 'console_scripts': [
+ 'wyoming-faster-whisper = wyoming_faster_whisper:__main__.run'
+ ]
+ }
)
diff --git a/wyoming_faster_whisper/__main__.py b/wyoming_faster_whisper/__main__.py
index 5557cc5..bb9d69f 100755
--- a/wyoming_faster_whisper/__main__.py
+++ b/wyoming_faster_whisper/__main__.py
@@ -131,5 +131,9 @@ async def main() -> None:
# -----------------------------------------------------------------------------
-if __name__ == "__main__":
+def run():
asyncio.run(main())
+
+
+if __name__ == "__main__":
+ run()

View file

@ -0,0 +1,40 @@
{ lib
, python3
, fetchPypi
}:
python3.pkgs.buildPythonApplication rec {
pname = "wyoming-faster-whisper";
version = "0.0.3";
format = "setuptools";
src = fetchPypi {
pname = "wyoming_faster_whisper";
inherit version;
hash = "sha256-uqepa70lprzV3DJK2wrNAAyZkMMJ5S86RKK716zxYU4=";
};
patches = [
./faster-whisper-entrypoint.patch
];
propagatedBuildInputs = with python3.pkgs; [
ctranslate2
tokenizers
wyoming
];
pythonImportsCheck = [
"wyoming_faster_whisper"
];
# no tests
doCheck = false;
meta = with lib; {
description = "Wyoming Server for Faster Whisper";
homepage = "https://pypi.org/project/wyoming-faster-whisper/";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -36199,6 +36199,8 @@ with pkgs;
tts = callPackage ../tools/audio/tts { };
wyoming-faster-whisper = callPackage ../tools/audio/wyoming/faster-whisper.nix { };
wyoming-piper = callPackage ../tools/audio/wyoming/piper.nix { };
### GAMES