{ lib , aiohttp , buildPythonPackage , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "aioaladdinconnect"; version = "0.1.58"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "AIOAladdinConnect"; inherit version; hash = "sha256-ymynaOKvnqqHIEuQc+5CagsaH5cHnQit8ileoUO6G+I="; }; 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"; changelog = "https://github.com/mkmer/AIOAladdinConnect/releases/tag/${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }