home-assistant-custom-components.auth_oidc: init at 0.5.1-alpha
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{
|
||||
lib,
|
||||
buildHomeAssistantComponent,
|
||||
fetchFromGitHub,
|
||||
aiofiles,
|
||||
bcrypt,
|
||||
jinja2,
|
||||
python-jose,
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "christaangoossens";
|
||||
domain = "auth_oidc";
|
||||
version = "0.5.1-alpha";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "christiaangoossens";
|
||||
repo = "hass-oidc-auth";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-GT82LWzfZzmCACS51mJctT/NeCTckJsJGl3x+wCQGjs=";
|
||||
};
|
||||
|
||||
dependencies = [
|
||||
aiofiles
|
||||
bcrypt
|
||||
jinja2
|
||||
python-jose
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/christiaangoossens/hass-oidc-auth/releases/tag/v${version}";
|
||||
description = "OpenID Connect authentication provider for Home Assistant";
|
||||
homepage = "https://github.com/christiaangoossens/hass-oidc-auth";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ hexa ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user