python3Packages.matter-ble-proxy: init at 0.8.0

This commit is contained in:
Martin Weinelt
2026-06-04 16:31:36 +02:00
parent 77e508e117
commit d757229b44
2 changed files with 62 additions and 0 deletions
@@ -0,0 +1,60 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
aiohttp,
bleak,
pytest-asyncio,
pytest-aiohttp,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "matter-ble-proxy";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "matter-js";
repo = "matterjs-server";
tag = "v${finalAttrs.version}";
hash = "sha256-AjCfPovhYKUeU4Xrsh6uL0pPG+ja0n+efFTbwre83m4=";
};
sourceRoot = "${finalAttrs.src.name}/python_ble_proxy";
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'version = "0.0.0"' 'version = "${finalAttrs.version}"'
'';
build-system = [ setuptools ];
dependencies = [
aiohttp
bleak
];
nativeCheckInputs = [
pytest-asyncio
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [ "matter_ble_proxy" ];
__structuredAttrs = true;
meta = {
description = "Client library for the OHF Matter Server BLE proxy protocol";
homepage = "https://github.com/matter-js/matterjs-server/tree/main/python_ble_proxy";
changelog = "https://github.com/matter-js/matterjs-server/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
mainProgram = "matter-ble-proxy";
};
})
+2
View File
@@ -9739,6 +9739,8 @@ self: super: with self; {
matrix-nio = callPackage ../development/python-modules/matrix-nio { };
matter-ble-proxy = callPackage ../development/python-modules/matter-ble-proxy { };
matter-python-client = callPackage ../development/python-modules/matter-python-client { };
mattermostdriver = callPackage ../development/python-modules/mattermostdriver { };