fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
40 lines
879 B
Nix
40 lines
879 B
Nix
{
|
|
lib,
|
|
aioboto3,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioaladdinconnect";
|
|
version = "0.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "AIOAladdinConnect";
|
|
inherit version;
|
|
hash = "sha256-5vfw8SU3lWlPoMAR+byf8jpZrGmXTPoeO+DvPByjZnw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aioboto3
|
|
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";
|
|
changelog = "https://github.com/mkmer/AIOAladdinConnect/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|