Merge pull request #309554 from mweinelt/faster-whisper-1.0.2

python311Packages.faster-whisper: 1.0.1 -> 1.0.2
This commit is contained in:
Martin Weinelt 2024-05-06 16:16:05 +02:00 committed by GitHub
commit 6b01d1310a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View File

@ -19,14 +19,14 @@
buildPythonPackage rec {
pname = "faster-whisper";
version = "1.0.1";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "SYSTRAN";
repo = "faster-whisper";
rev = "refs/tags/v${version}";
hash = "sha256-b8P9fI32ubOrdayA0vnjLhpZ4qffB6W+8TEOA1YLKqo=";
hash = "sha256-O2RRwb+omgSpfckHh3oPu454g2ULT4gyolrg5olHcRc=";
};
build-system = [
@ -62,9 +62,9 @@ buildPythonPackage rec {
'';
meta = with lib; {
changelog = "https://github.com/guillaumekln/faster-whisper/releases/tag/${version}";
changelog = "https://github.com/SYSTRAN/faster-whisper/releases/tag/v${version}";
description = "Faster Whisper transcription with CTranslate2";
homepage = "https://github.com/guillaumekln/faster-whisper";
homepage = "https://github.com/SYSTRAN/faster-whisper";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};

View File

@ -21,6 +21,7 @@ python3Packages.buildPythonApplication rec {
];
pythonRelaxDeps = [
"faster-whisper"
"wyoming"
];