{ lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder , zeep }: buildPythonPackage rec { pname = "total-connect-client"; version = "2022.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "craigjmidwinter"; repo = "total-connect-client"; rev = version; hash = "sha256-KfJFU85yQmBZn4f0ljnaiy/DjHMOuNi+Q7nb8yCpKVk="; }; propagatedBuildInputs = [ zeep ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "total_connect_client" ]; meta = with lib; { description = "Interact with Total Connect 2 alarm systems"; homepage = "https://github.com/craigjmidwinter/total-connect-client"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }