blob: a9d09932ebef9bce00295a22062e7424000e0f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
# build-system
setuptools,
# tests
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "pysilero-vad";
version = "3.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "pysilero-vad";
tag = "v${finalAttrs.version}";
hash = "sha256-cqjuU5JtsL+Fp3m3uzz8flrJEyn+JDUMWsXU0Ioh87U=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pysilero_vad" ];
# aarch64-linux onnxruntime tries to get cpu information from /sys, which isn't available
# inside the nix build sandbox.
#doCheck = stdenv.buildPlatform.system != "aarch64-linux";
dontUsePythonImportsCheck = stdenv.buildPlatform.system == "aarch64-linux";
preCheck = ''
# don't shadow the build result during tests
rm -rf pysilero_vad
'';
meta = {
description = "Pre-packaged voice activity detector using silero-vad";
homepage = "https://github.com/rhasspy/pysilero-vad";
changelog = "https://github.com/rhasspy/pysilero-vad/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
})
|