ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aioairzone / default.nix
blob61b67cb32a31f44241732e4b1c4f7eb4c0ef6004
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "aioairzone";
10   version = "0.4.9";
11   format = "setuptools";
13   disabled = pythonOlder "3.8";
15   src = fetchFromGitHub {
16     owner = "Noltari";
17     repo = pname;
18     rev = "refs/tags/${version}";
19     hash = "sha256-qG+EPZjH3I4TRGka7J21ukGpuJQfA/Nuy6DbIUnykcs=";
20   };
22   propagatedBuildInputs = [
23     aiohttp
24   ];
26   # Module has no tests
27   doCheck = false;
29   pythonImportsCheck = [
30     "aioairzone"
31   ];
33   meta = with lib; {
34     description = "Module to control AirZone devices";
35     homepage = "https://github.com/Noltari/aioairzone";
36     license = with licenses; [ asl20 ];
37     maintainers = with maintainers; [ fab ];
38   };