biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / home-assistant-chip-clusters / default.nix
blob04e71d133e19238b05385357667ffbed0e5aea32
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   aenum,
6   dacite,
7 }:
9 buildPythonPackage rec {
10   pname = "home-assistant-chip-clusters";
11   version = "2024.7.0";
12   format = "wheel";
14   src = fetchPypi {
15     inherit format version;
16     pname = "home_assistant_chip_clusters";
17     dist = "py3";
18     python = "py3";
19     hash = "sha256-1yR8Z+R16u099XtxPasmocFbdQPH1Rr6sqngNpWmuWE=";
20   };
22   propagatedBuildInputs = [
23     aenum
24     dacite
25   ];
27   pythonImportsCheck = [
28     "chip.clusters"
29     "chip.clusters.ClusterObjects"
30     "chip.tlv"
31   ];
33   doCheck = false; # no tests
35   meta = with lib; {
36     description = "Python-base APIs and tools for CHIP";
37     homepage = "https://github.com/home-assistant-libs/chip-wheels";
38     changelog = "https://github.com/home-assistant-libs/chip-wheels/releases/tag/${version}";
39     license = licenses.asl20;
40     maintainers = teams.home-assistant.members;
41     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
42   };