Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pycoolmasternet-async / default.nix
blobd8aa5760d5d956c10638ec23e769f206eef112a8
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "pycoolmasternet-async";
9   version = "0.1.6";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchFromGitHub {
15     owner = "OnFreund";
16     repo = "pycoolmasternet-async";
17     rev = "v${version}";
18     hash = "sha256-7RYKZWs8SCXCBgjbiTLSRUPujeraxiOE6MHENPmhimg=";
19   };
21   # no tests implemented
22   doCheck = false;
24   pythonImportsCheck = [
25     "pycoolmasternet_async"
26   ];
28   meta = with lib; {
29     description = "Python library to control CoolMasterNet HVAC bridges over asyncio";
30     homepage = "https://github.com/OnFreund/pycoolmasternet-async";
31     license = licenses.mit;
32     maintainers = with maintainers; [ dotlambda ];
33   };