depot/third_party/nixpkgs/pkgs/development/python-modules/home-assistant-chip-clusters/default.nix

38 lines
788 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, dacite
}:
buildPythonPackage rec {
pname = "home-assistant-chip-clusters";
version = "2023.1.0";
format = "wheel";
src = fetchPypi {
inherit format version;
pname = "home_assistant_chip_clusters";
dist = "py3";
python = "py3";
hash = "sha256-2UcDu2b3DtijAOUt+eazleoKxEhAgsU3MY/OoEBpLNg=";
};
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 ];
};
}