blob: 4501a1d32ced98fef85be655fc840b6a06b1f2a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
prettytable,
setuptools,
}:
buildPythonPackage rec {
pname = "aiosomecomfort";
version = "0.0.38";
pyproject = true;
src = fetchFromGitHub {
owner = "mkmer";
repo = "AIOSomecomfort";
tag = version;
hash = "sha256-tjJazA5MFIr3Z3I8l9g6SngH6U616e9jWXfMrim2wPo=";
};
build-system = [
setuptools
];
pythonRelaxDeps = [
"aiohttp"
];
dependencies = [
aiohttp
prettytable
];
pythonImportsCheck = [ "aiosomecomfort" ];
# Tests only run on Windows, due to WindowsSelectorEventLoopPolicy
doCheck = false;
meta = {
description = "AsyicIO client for US models of Honeywell Thermostats";
homepage = "https://github.com/mkmer/AIOSomecomfort";
changelog = "https://github.com/mkmer/AIOSomecomfort/releases/tag/${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|