Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

33 lines
812 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
psutil,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "psutil-home-assistant";
version = "0.0.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "psutil-home-assistant";
tag = version;
hash = "sha256-6bj1aaa/JYZFVwUAJfxISRoldgTmumCG8WrlKhkb6kM=";
};
propagatedBuildInputs = [ psutil ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
changelog = "https://github.com/home-assistant-libs/psutil-home-assistant/releases/tag/${version}";
description = "Wrapper of psutil that removes reliance on globals";
homepage = "https://github.com/home-assistant-libs/psutil-home-assistant";
license = licenses.asl20;
teams = [ teams.home-assistant ];
};
}