feat(compute01): Init satosa at 8.4.0

This commit is contained in:
Tom Hubrecht 2023-09-26 20:56:55 +02:00
parent 8cce7e19cb
commit e0bd555d2f
9 changed files with 316 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, pkgs, ... }:
let
callPackage = lib.callPackageWith (pkgs // self);
self = {
cookies-samesite-compat = callPackage ./cookies-samesite-compat.nix { };
pyop = callPackage ./pyop.nix { };
oic = callPackage ./oic.nix { };
pydantic-settings = callPackage ./pydantic-settings.nix { };
pydantic = callPackage ./pydantic.nix { };
pydantic-core = callPackage ./pydantic-core.nix { };
};
in callPackage ./satosa.nix { }