5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# dependencies
|
|
, av
|
|
, ctranslate2
|
|
, huggingface-hub
|
|
, onnxruntime
|
|
, tokenizers
|
|
|
|
# tests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "faster-whisper";
|
|
version = "0.7.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guillaumekln";
|
|
repo = "faster-whisper";
|
|
rev = "v${version}";
|
|
hash = "sha256-NTk0S+dMChygnC7Wix62AFO4NNSPJuKXyqoEyWiQhII=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace "onnxruntime>=1.14,<2" "onnxruntime"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
av
|
|
ctranslate2
|
|
huggingface-hub
|
|
onnxruntime
|
|
tokenizers
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"faster_whisper"
|
|
];
|
|
|
|
# all tests require downloads
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/guillaumekln/faster-whisper/releases/tag/v${version}";
|
|
description = "Faster Whisper transcription with CTranslate2";
|
|
homepage = "https://github.com/guillaumekln/faster-whisper";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|