Merge pull request #290678 from mweinelt/faster-whisper-1.0.0

python311Packages.faster-whisper: 0.10.0 -> 1.0.1
This commit is contained in:
Martin Weinelt 2024-03-01 12:56:28 +01:00 committed by GitHub
commit dbc93a1216
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,9 @@
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# dependencies
, av
, ctranslate2
@ -15,17 +18,21 @@
buildPythonPackage rec {
pname = "faster-whisper";
version = "0.10.0";
format = "setuptools";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "guillaumekln";
owner = "SYSTRAN";
repo = "faster-whisper";
rev = "refs/tags/${version}";
hash = "sha256-qcpPQv5WoUkT92/TZ+MMq452FgPNcm3ZZ+ZNc0btOGE=";
rev = "refs/tags/v${version}";
hash = "sha256-b8P9fI32ubOrdayA0vnjLhpZ4qffB6W+8TEOA1YLKqo=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
av
ctranslate2
huggingface-hub