Merge pull request #180958 from fabaff/aladdinconnectclient

This commit is contained in:
Martin Weinelt 2022-07-10 14:05:03 +02:00 committed by GitHub
commit 394025473a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 1 deletions

View file

@ -0,0 +1,38 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "aioaladdinconnect";
version = "0.1.21";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "AIOAladdinConnect";
inherit version;
hash = "sha256-Zr9QLiQNmphPpAVnFVpoOlVbuWUVtWXIacYKAnth+E4=";
};
propagatedBuildInputs = [
aiohttp
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"AIOAladdinConnect"
];
meta = with lib; {
description = "Library for controlling Genie garage doors connected to Aladdin Connect devices";
homepage = "https://github.com/mkmer/AIOAladdinConnect";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -61,7 +61,8 @@
aioairzone aioairzone
]; ];
"aladdin_connect" = ps: with ps; [ "aladdin_connect" = ps: with ps; [
]; # missing inputs: AIOAladdinConnect aioaladdinconnect
];
"alarm_control_panel" = ps: with ps; [ "alarm_control_panel" = ps: with ps; [
]; ];
"alarmdecoder" = ps: with ps; [ "alarmdecoder" = ps: with ps; [
@ -3232,6 +3233,7 @@
"airtouch4" "airtouch4"
"airvisual" "airvisual"
"airzone" "airzone"
"aladdin_connect"
"alarm_control_panel" "alarm_control_panel"
"alarmdecoder" "alarmdecoder"
"alert" "alert"

View file

@ -249,6 +249,8 @@ in {
aioairzone = callPackage ../development/python-modules/aioairzone { }; aioairzone = callPackage ../development/python-modules/aioairzone { };
aioaladdinconnect = callPackage ../development/python-modules/aioaladdinconnect { };
aioambient = callPackage ../development/python-modules/aioambient { }; aioambient = callPackage ../development/python-modules/aioambient { };
aioapns = callPackage ../development/python-modules/aioapns { }; aioapns = callPackage ../development/python-modules/aioapns { };