1{
2 lib,
3 aiohttp,
4 buildPythonPackage,
5 fetchFromGitHub,
6 pythonOlder,
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "pyrisco";
12 version = "0.6.7";
13 pyproject = true;
14
15 disabled = pythonOlder "3.7";
16
17 src = fetchFromGitHub {
18 owner = "OnFreund";
19 repo = "pyrisco";
20 tag = "v${version}";
21 hash = "sha256-mZzTFISw2CzGu6AhXSt6LtbXuKqCTc6B6wNKnI3pA4o=";
22 };
23
24 build-system = [ setuptools ];
25
26 dependencies = [ aiohttp ];
27
28 # Project has no tests
29 doCheck = false;
30
31 pythonImportsCheck = [ "pyrisco" ];
32
33 meta = with lib; {
34 description = "Python interface to Risco alarm systems through Risco Cloud";
35 homepage = "https://github.com/OnFreund/pyrisco";
36 changelog = "https://github.com/OnFreund/pyrisco/releases/tag/v${version}";
37 license = with licenses; [ mit ];
38 maintainers = with maintainers; [ fab ];
39 };
40}