depot/third_party/nixpkgs/pkgs/development/python-modules/pysilero-vad/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

52 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
# build-system
setuptools,
# dependencies
numpy,
onnxruntime,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pysilero-vad";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "pysilero-vad";
rev = "refs/tags/v${version}";
hash = "sha256-p0pPhQo/raZhlHettmoc7FwnlZH9n2NI4tYHvikJ8i4=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [ "numpy" ];
dependencies = [
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 ];
};
}