python3Packages.homekit-audio-proxy: init at 1.2.1

This commit is contained in:
Jamie Magee
2026-04-04 17:27:16 -07:00
parent 32cbbb03c7
commit 11683f8980
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
cryptography,
pytest-asyncio,
pytest-cov-stub,
pytest-timeout,
pytestCheckHook,
sybil,
}:
buildPythonPackage (finalAttrs: {
pname = "homekit-audio-proxy";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "bdraco";
repo = "homekit-audio-proxy";
tag = "v${finalAttrs.version}";
hash = "sha256-9vC6atYdHvJ/Pkq8n4Amh557GRWLvPofhgnfQJPSBx0=";
};
build-system = [ setuptools ];
dependencies = [ cryptography ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytest-timeout
pytestCheckHook
sybil
];
pythonImportsCheck = [ "homekit_audio_proxy" ];
meta = {
description = "SRTP audio proxy for HomeKit camera streaming";
homepage = "https://github.com/bdraco/homekit-audio-proxy";
changelog = "https://github.com/bdraco/homekit-audio-proxy/blob/main/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -7106,6 +7106,8 @@ self: super: with self; {
homeconnect = callPackage ../development/python-modules/homeconnect { };
homekit-audio-proxy = callPackage ../development/python-modules/homekit-audio-proxy { };
homelink-integration-api = callPackage ../development/python-modules/homelink-integration-api { };
homematicip = callPackage ../development/python-modules/homematicip { };