spicedb: 1.39.1 -> 1.40.0
[NixPkgs.git] / pkgs / development / python-modules / evohome-async / default.nix
blob5abef0b5a32ca9e1ca5f06d22fcd2c79a6a840fa
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   click,
6   fetchFromGitHub,
7   hatchling,
8   pythonOlder,
9   voluptuous,
12 buildPythonPackage rec {
13   pname = "evohome-async";
14   version = "0.4.21";
15   pyproject = true;
17   disabled = pythonOlder "3.11";
19   src = fetchFromGitHub {
20     owner = "zxdavb";
21     repo = "evohome-async";
22     tag = version;
23     hash = "sha256-+tBqyg7E9wRC6oHq6Fv2vzIGtrHqZp8w/3x/xbacqWI=";
24   };
26   nativeBuildInputs = [ hatchling ];
28   propagatedBuildInputs = [
29     aiohttp
30     click
31     voluptuous
32   ];
34   # Project has no tests
35   doCheck = false;
37   pythonImportsCheck = [ "evohomeasync2" ];
39   meta = with lib; {
40     description = "Python client for connecting to Honeywell's TCC RESTful API";
41     homepage = "https://github.com/zxdavb/evohome-async";
42     license = with licenses; [ asl20 ];
43     maintainers = with maintainers; [ fab ];
44     mainProgram = "evo-client";
45   };