Skip to content

Commit 284345c

Browse files
authored
home-assistant-custom-components.auth_oidc: init at 0.5.1-alpha (NixOS#374162)
2 parents adc0529 + 30b400c commit 284345c

File tree

1 file changed

+37
-0
lines changed
  • pkgs/servers/home-assistant/custom-components/auth_oidc

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
lib,
3+
buildHomeAssistantComponent,
4+
fetchFromGitHub,
5+
aiofiles,
6+
bcrypt,
7+
jinja2,
8+
python-jose,
9+
}:
10+
11+
buildHomeAssistantComponent rec {
12+
owner = "christaangoossens";
13+
domain = "auth_oidc";
14+
version = "0.5.1-alpha";
15+
16+
src = fetchFromGitHub {
17+
owner = "christiaangoossens";
18+
repo = "hass-oidc-auth";
19+
tag = "v${version}";
20+
hash = "sha256-GT82LWzfZzmCACS51mJctT/NeCTckJsJGl3x+wCQGjs=";
21+
};
22+
23+
dependencies = [
24+
aiofiles
25+
bcrypt
26+
jinja2
27+
python-jose
28+
];
29+
30+
meta = {
31+
changelog = "https://github.com/christiaangoossens/hass-oidc-auth/releases/tag/v${version}";
32+
description = "OpenID Connect authentication provider for Home Assistant";
33+
homepage = "https://github.com/christiaangoossens/hass-oidc-auth";
34+
license = lib.licenses.mit;
35+
maintainers = with lib.maintainers; [ hexa ];
36+
};
37+
}

0 commit comments

Comments
 (0)