Faster whisper update (#350083)

This commit is contained in:
Martin Weinelt 2024-10-22 01:27:18 +02:00 committed by GitHub
commit 65b41d1ae8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 5 deletions

View File

@ -19,13 +19,14 @@
buildPythonPackage rec {
pname = "faster-whisper";
version = "1.0.3";
version = "unstable-2024-07-26";
pyproject = true;
src = fetchFromGitHub {
owner = "SYSTRAN";
repo = "faster-whisper";
rev = "refs/tags/v${version}";
# rev = "refs/tags/v${version}";
rev = "d57c5b40b06e59ec44240d93485a95799548af50";
hash = "sha256-C/O+wt3dykQJmH+VsVkpQwEAdyW8goMUMKR0Z3Y7jdo=";
};
@ -33,7 +34,10 @@ buildPythonPackage rec {
setuptools
];
pythonRelaxDeps = [ "tokenizers" ];
pythonRelaxDeps = [
"tokenizers"
"av"
];
dependencies = [
av

View File

@ -5,14 +5,14 @@
python3Packages.buildPythonApplication rec {
pname = "wyoming-faster-whisper";
version = "2.1.0";
version = "2.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "wyoming-faster-whisper";
rev = "refs/tags/v${version}";
hash = "sha256-zWa872YkPh8B7dE//leth+ixIa1wHSRcjkvH2lXzolc=";
hash = "sha256-G46ycjpRu4MD00FiBM1H0DrPpXaaPlZ8yeoyZ7WYD48=";
};
nativeBuildInputs = with python3Packages; [