Some checks failed
build configuration / build_rescue01 (push) Successful in 1m7s
build configuration / build_storage01 (push) Successful in 1m9s
build configuration / build_web02 (push) Successful in 1m8s
build configuration / build_compute01 (push) Successful in 1m29s
lint / check (push) Successful in 26s
build configuration / build_web01 (push) Successful in 1m36s
build configuration / build_vault01 (push) Failing after 8m54s
20 lines
335 B
Nix
20 lines
335 B
Nix
{ pkgs }:
|
|
|
|
let
|
|
inherit (pkgs) lib;
|
|
|
|
callPackage = lib.callPackageWith (pkgs // pkgs.python3.pkgs // self);
|
|
|
|
self = builtins.listToAttrs (
|
|
builtins.map
|
|
(name: {
|
|
inherit name;
|
|
value = callPackage (./. + "/${name}.nix") { };
|
|
})
|
|
[
|
|
"pydantic"
|
|
"pydantic-core"
|
|
]
|
|
);
|
|
in
|
|
self
|