Skip to content

Commit

Permalink
Faster whisper update (#350083)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Oct 21, 2024
2 parents 8363df8 + 97b7c11 commit 65b41d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions pkgs/development/python-modules/faster-whisper/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,25 @@

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=";
};

build-system = [
setuptools
];

pythonRelaxDeps = [ "tokenizers" ];
pythonRelaxDeps = [
"tokenizers"
"av"
];

dependencies = [
av
Expand Down
4 changes: 2 additions & 2 deletions pkgs/tools/audio/wyoming/faster-whisper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; [
Expand Down

0 comments on commit 65b41d1

Please sign in to comment.