ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / total-connect-client / default.nix
blob9c6396d55c1161ae1731cf0a8f6db9cee03f4823
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , pythonOlder
6 , zeep
7 }:
9 buildPythonPackage rec {
10   pname = "total-connect-client";
11   version = "2022.10";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "craigjmidwinter";
18     repo = "total-connect-client";
19     rev = version;
20     hash = "sha256-HNX+8TIfXOEy4KCmOjsNvOvLBdF8iQT0NJLBDD+XWsA=";
21   };
23   propagatedBuildInputs = [
24     zeep
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "total_connect_client"
33   ];
35   meta = with lib; {
36     description = "Interact with Total Connect 2 alarm systems";
37     homepage = "https://github.com/craigjmidwinter/total-connect-client";
38     license = licenses.mit;
39     maintainers = with maintainers; [ dotlambda ];
40   };