python310Packages.aioaladdinconnect: init 0.1.20
This commit is contained in:
parent
0a9f100d77
commit
6089b88a23
@ -0,0 +1,39 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aioaladdinconnect";
|
||||||
|
version = "0.1.20";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mkmer";
|
||||||
|
repo = "AIOAladdinConnect";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-JHGAJx1Hb/NKWZ+y1ACmVUiesYj1VVHnYCcP+XZGADs=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -247,6 +247,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 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user