python311Packages.pysilero-vad: init at 1.0.0

Pre-packaged voice activity detector using silero-vad
This commit is contained in:
Martin Weinelt 2023-12-30 16:59:07 +01:00
parent 9bc73ac7d4
commit 9f4fad502e
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,61 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, stdenv
, pythonRelaxDepsHook
# build-system
, setuptools
# dependencies
, numpy
, onnxruntime
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pysilero-vad";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "pysilero-vad";
rev = "fc1e3f74e6282249c1fd67ab0f65832ad1ce9cc5";
hash = "sha256-5jS2xZEtvzXO/ffZzseTTUHfE528W9FvKB0AKG6T62k=";
};
nativeBuildInputs = [
setuptools
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"numpy"
];
propagatedBuildInputs = [
numpy
onnxruntime
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pysilero_vad"
];
meta = with lib; {
# what(): /build/source/include/onnxruntime/core/common/logging/logging.h:294 static const onnxruntime::logging::Logger& onnxruntime::logging::LoggingManager::DefaultLogger() Attempt to use DefaultLogger but none has been registered.
broken = stdenv.isAarch64 && stdenv.isLinux;
description = "Pre-packaged voice activity detector using silero-vad";
homepage = "https://github.com/rhasspy/pysilero-vad";
changelog = "https://github.com/rhasspy/pysilero-vad/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View File

@ -9856,6 +9856,8 @@ self: super: with self; {
pysiaalarm = callPackage ../development/python-modules/pysiaalarm { };
pysilero-vad = callPackage ../development/python-modules/pysilero-vad { };
pysimplesoap = callPackage ../development/python-modules/pysimplesoap { };
pyskyqhub = callPackage ../development/python-modules/pyskyqhub { };