File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
pkgs/servers/home-assistant/custom-components/auth_oidc Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments