blob: f8018b98ab1da178b05b220a76925826ac56566a (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "pycoolmasternet-async";
version = "0.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "OnFreund";
repo = "pycoolmasternet-async";
tag = "v${version}";
hash = "sha256-C2JNAg7FdZ0Sfr7HGCQaBOQdWbeDtpBIIhCq3Htsx84=";
};
build-system = [ setuptools ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "pycoolmasternet_async" ];
meta = {
description = "Python library to control CoolMasterNet HVAC bridges over asyncio";
homepage = "https://github.com/OnFreund/pycoolmasternet-async";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|