biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / aioairzone / default.nix
blob306dd1aff433ab7c8d00c37335c70d5fb45a4cc6
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "aioairzone";
12   version = "0.9.4";
13   pyproject = true;
15   disabled = pythonOlder "3.11";
17   src = fetchFromGitHub {
18     owner = "Noltari";
19     repo = "aioairzone";
20     rev = "refs/tags/${version}";
21     hash = "sha256-dcYp5lMN5twK1HQK/3PhBQ4nm/NKURC0x14ozkbzJ5A=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "aioairzone" ];
33   meta = with lib; {
34     description = "Module to control AirZone devices";
35     homepage = "https://github.com/Noltari/aioairzone";
36     changelog = "https://github.com/Noltari/aioairzone/releases/tag/${version}";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ fab ];
39   };