python313Packages.bosch-alarm-mode2: init at 0.4.3

This commit is contained in:
Robert Schütz
2025-03-31 22:11:43 -07:00
parent eb530610c7
commit 6cc8cbc954
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
lib,
}:
buildPythonPackage rec {
pname = "bosch-alarm-mode2";
version = "0.4.3";
pyproject = true;
src = fetchFromGitHub {
owner = "mag1024";
repo = "bosch-alarm-mode2";
tag = "v${version}";
hash = "sha256-bVLwEPWpdCuLanEOAykvvVnL8C8JvOrbcVic/kV15BE=";
};
build-system = [
hatch-vcs
hatchling
];
pythonImportsCheck = [ "bosch_alarm_mode2" ];
meta = {
description = "Async Python library for interacting with Bosch Alarm Panels supporting the 'Mode 2' API";
homepage = "https://github.com/mag1024/bosch-alarm-mode2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -1979,6 +1979,8 @@ self: super: with self; {
bork = callPackage ../development/python-modules/bork { };
bosch-alarm-mode2 = callPackage ../development/python-modules/bosch-alarm-mode2 { };
boschshcpy = callPackage ../development/python-modules/boschshcpy { };
boto3 = callPackage ../development/python-modules/boto3 { };