python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / development / python-modules / aioairzone-cloud / default.nix
blobfdc89dc5b927078daf4f5dc893641f3c035c62a6
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "aioairzone-cloud";
12   version = "0.6.10";
13   pyproject = true;
15   disabled = pythonOlder "3.11";
17   src = fetchFromGitHub {
18     owner = "Noltari";
19     repo = "aioairzone-cloud";
20     tag = version;
21     hash = "sha256-H78vlCGJhIE1/utX4Dh1vssOwYnQxCytsEs+hpOPVtM=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   pythonImportsCheck = [ "aioairzone_cloud" ];
30   # Module has no tests
31   doCheck = false;
33   meta = with lib; {
34     description = "Library to control Airzone via Cloud API";
35     homepage = "https://github.com/Noltari/aioairzone-cloud";
36     changelog = "https://github.com/Noltari/aioairzone-cloud/releases/tag/${version}";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ fab ];
39   };