Merge pull request #118633 from mweinelt/home-assistant-team
This commit is contained in:
commit
c11a3f5fd4
|
@ -87,6 +87,16 @@ with lib.maintainers; {
|
||||||
scope = "Maintain GNOME desktop environment and platform.";
|
scope = "Maintain GNOME desktop environment and platform.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-assistant = {
|
||||||
|
members = [
|
||||||
|
fab
|
||||||
|
globin
|
||||||
|
hexa
|
||||||
|
mic92
|
||||||
|
];
|
||||||
|
scope = "Maintain the Home Assistant ecosystem";
|
||||||
|
};
|
||||||
|
|
||||||
jitsi = {
|
jitsi = {
|
||||||
members = [
|
members = [
|
||||||
mmilata
|
mmilata
|
||||||
|
|
|
@ -63,7 +63,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
meta.maintainers = with maintainers; [ ];
|
meta.maintainers = teams.home-assistant.members;
|
||||||
|
|
||||||
options.services.home-assistant = {
|
options.services.home-assistant = {
|
||||||
enable = mkEnableOption "Home Assistant";
|
enable = mkEnableOption "Home Assistant";
|
||||||
|
|
|
@ -82,6 +82,6 @@ in python.pkgs.buildPythonApplication rec {
|
||||||
description = "Sandboxed Python execution environment for writing automation apps for Home Assistant";
|
description = "Sandboxed Python execution environment for writing automation apps for Home Assistant";
|
||||||
homepage = "https://github.com/AppDaemon/appdaemon";
|
homepage = "https://github.com/AppDaemon/appdaemon";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ peterhoeg ];
|
maintainers = teams.home-assistant.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
description = "Command-line tool for Home Assistant";
|
description = "Command-line tool for Home Assistant";
|
||||||
homepage = "https://github.com/home-assistant/home-assistant-cli";
|
homepage = "https://github.com/home-assistant/home-assistant-cli";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = teams.home-assistant.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -405,7 +405,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||||
homepage = "https://home-assistant.io/";
|
homepage = "https://home-assistant.io/";
|
||||||
description = "Open source home automation that puts local control and privacy first";
|
description = "Open source home automation that puts local control and privacy first";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ globin mic92 hexa ];
|
maintainers = teams.home-assistant.members;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@ buildPythonPackage rec {
|
||||||
description = "Polymer frontend for Home Assistant";
|
description = "Polymer frontend for Home Assistant";
|
||||||
homepage = "https://github.com/home-assistant/home-assistant-polymer";
|
homepage = "https://github.com/home-assistant/home-assistant-polymer";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ globin ];
|
maintainers = teams.home-assistant.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue