nixpkgs/pkgs/by-name/wy/wyoming-satellite/package.nix
Martin Weinelt c4e03b68a1
wyoming-satellite: init at 1.2.0
Remote voice satellite using Wyoming protocol
2024-03-29 03:04:43 +01:00

61 lines
1.2 KiB
Nix

{ 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";
};
}