wyoming-faster-whisper: 1.1.0 -> 2.0.0

https://github.com/rhasspy/wyoming-faster-whisper/releases/tag/v2.0.0
This commit is contained in:
Martin Weinelt 2024-03-10 23:23:04 +01:00
parent c34939d424
commit 2148c8bfaa
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 8 additions and 17 deletions

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;