wyoming-satellite: init at 1.2.0

Remote voice satellite using Wyoming protocol
This commit is contained in:
Martin Weinelt 2023-12-27 18:54:58 +01:00
parent 9f4fad502e
commit c4e03b68a1
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -0,0 +1,60 @@
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "wyoming-satellite";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "wyoming-satellite";
rev = "refs/tags/v${version}";
hash = "sha256-KIWhWE9Qaxs72fJ1LRTkvk6QtpBJOFlmZv2od69O15g=";
};
nativeBuildInputs = with python3Packages; [
setuptools
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"zeroconf"
];
propagatedBuildInputs = with python3Packages; [
pyring-buffer
wyoming
zeroconf
];
passthru.optional-dependencies = {
silerovad = with python3Packages; [
pysilero-vad
];
webrtc = with python3Packages; [
webrtc-noise-gain
];
};
pythonImportsCheck = [
"wyoming_satellite"
];
nativeCheckInputs = with python3Packages; [
pytest-asyncio
pytestCheckHook
];
meta = with lib; {
description = "Remote voice satellite using Wyoming protocol";
homepage = "https://github.com/rhasspy/wyoming-satellite";
changelog = "https://github.com/rhasspy/wyoming-satellite/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
mainProgram = "wyoming-satellite";
};
}