python3Packages.home-assistant-chip-clusters: init at 2022.12.0

This commit is contained in:
Martin Weinelt 2023-01-12 02:12:10 +01:00
parent 838ebb7e26
commit 7991fc0740
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, dacite
}:
buildPythonPackage rec {
pname = "home-assistant-chip-clusters";
version = "2022.12.0";
format = "wheel";
src = fetchPypi {
inherit format version;
pname = "home_assistant_chip_clusters";
dist = "py3";
python = "py3";
hash = "sha256-zo54lRNyKXCCUUoYIiZmHZMqISim9QKEOnFbM/iBRqE=";
};
propagatedBuildInputs = [
dacite
];
pythonImportsCheck = [
"chip.clusters"
];
doCheck = false; # no tests
meta = with lib; {
description = "Python-base APIs and tools for CHIP";
homepage = "https://github.com/home-assistant-libs/chip-wheels";
license = licenses.asl20;
maintainers = teams.home-assistant.members;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}

View file

@ -4297,6 +4297,8 @@ self: super: with self; {
home-assistant-bluetooth = callPackage ../development/python-modules/home-assistant-bluetooth { };
home-assistant-chip-clusters = callPackage ../development/python-modules/home-assistant-chip-clusters { };
homeassistant-pyozw = callPackage ../development/python-modules/homeassistant-pyozw { };
homeconnect = callPackage ../development/python-modules/homeconnect { };