wlroots: 0.18.1 -> 0.18.2 (#364488)
[NixPkgs.git] / pkgs / development / python-modules / pycoolmasternet-async / default.nix
blobcfed7b75d4500c68c69c93f3410510c1ba778c8d
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "pycoolmasternet-async";
11   version = "0.2.2";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "OnFreund";
18     repo = "pycoolmasternet-async";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-MfWWy4C/G2w0Zb4C6iYbcfKciFtWctZ63K8lWaHuSnQ=";
21   };
23   build-system = [ setuptools ];
25   # no tests implemented
26   doCheck = false;
28   pythonImportsCheck = [ "pycoolmasternet_async" ];
30   meta = with lib; {
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 ];
35   };