Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
836 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
aiofiles,
bcrypt,
jinja2,
python-jose,
}:
buildHomeAssistantComponent rec {
owner = "christaangoossens";
domain = "auth_oidc";
version = "0.6.3-alpha";
src = fetchFromGitHub {
owner = "christiaangoossens";
repo = "hass-oidc-auth";
tag = "v${version}";
hash = "sha256-+R2IIs9MixR8epVpk4QycN8PjOfRITlZ+oUbdPEk2eA=";
};
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 ];
};
}