Merge pull request #295456 from mweinelt/wyoming-faster-whisper-2.0.0

wyoming-faster-whisper: 1.1.0- -> 2.0.0
This commit is contained in:
Martin Weinelt 2024-03-23 23:33:42 +01:00 committed by GitHub
commit 92b6792769
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 30 deletions

View File

@ -37,22 +37,13 @@ in
enable = mkEnableOption (mdDoc "Wyoming faster-whisper server");
model = mkOption {
# Intersection between available and referenced models here:
# https://github.com/rhasspy/models/releases/tag/v1.0
# https://github.com/rhasspy/rhasspy3/blob/wyoming-v1/programs/asr/faster-whisper/server/wyoming_faster_whisper/download.py#L17-L27
type = enum [
"tiny"
"tiny-int8"
"base"
"base-int8"
"small"
"small-int8"
"medium-int8"
];
type = str;
default = "tiny-int8";
example = "medium-int8";
example = "Systran/faster-distil-whisper-small.en";
description = mdDoc ''
Name of the voice model to use.
Check the [2.0.0 release notes](https://github.com/rhasspy/wyoming-faster-whisper/releases/tag/v2.0.0) for possible values.
'';
};

View File

@ -1,30 +1,21 @@
{ lib
, python3
, python3Packages
, fetchFromGitHub
, fetchpatch
}:
python3.pkgs.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "wyoming-faster-whisper";
version = "1.1.0";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "wyoming-faster-whisper";
rev = "refs/tags/v${version}";
hash = "sha256-RD6J/Q7kvd+sgTpR6ERyV+D8gpm0fF38L3U/Jp7gOgk=";
hash = "sha256-CeFSxL2Mn9lgboKghbteCl6VMTqruJgrI0io+TdaV5k=";
};
patches = [
(fetchpatch {
# fix setup.py
url = "https://github.com/rhasspy/wyoming-faster-whisper/commit/cdd1536997a091dcf9054da9ff424a2603067755.patch";
hash = "sha256-LGYo21FhKGXcAN9DjXzwIRqkOzTz3suXiQdgGrJSDBw=";
})
];
nativeBuildInputs = with python3.pkgs; [
nativeBuildInputs = with python3Packages; [
setuptools
pythonRelaxDepsHook
];
@ -33,9 +24,8 @@ python3.pkgs.buildPythonApplication rec {
"wyoming"
];
propagatedBuildInputs = with python3.pkgs; [
ctranslate2
tokenizers
propagatedBuildInputs = with python3Packages; [
faster-whisper
wyoming
];
@ -47,6 +37,7 @@ python3.pkgs.buildPythonApplication rec {
doCheck = false;
meta = with lib; {
changelog = "https://github.com/rhasspy/wyoming-faster-whisper/releases/tag/v${version}";
description = "Wyoming Server for Faster Whisper";
homepage = "https://github.com/rhasspy/wyoming-faster-whisper";
license = licenses.mit;