9 buildPythonPackage rec {
10 pname = "pycoolmasternet-async";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "pycoolmasternet-async";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-MfWWy4C/G2w0Zb4C6iYbcfKciFtWctZ63K8lWaHuSnQ=";
23 build-system = [ setuptools ];
25 # no tests implemented
28 pythonImportsCheck = [ "pycoolmasternet_async" ];
31 description = "Python library to control CoolMasterNet HVAC bridges over asyncio";
32 homepage = "https://github.com/OnFreund/pycoolmasternet-async";
33 license = licenses.mit;
34 maintainers = with maintainers; [ dotlambda ];