feat(nix): parameterize dependency-groups in python.nix

This commit is contained in:
alt-glitch
2026-04-26 12:55:46 +05:30
parent 7c50ed707c
commit 44287fbbbf

View File

@@ -7,6 +7,7 @@
pyproject-nix,
pyproject-build-systems,
stdenv,
dependency-groups ? [ "all" ],
}:
let
workspace = uv2nix.lib.workspace.loadWorkspace { workspaceRoot = ./..; };
@@ -96,5 +97,5 @@ let
]);
in
pythonSet.mkVirtualEnv "hermes-agent-env" {
hermes-agent = [ "all" ];
hermes-agent = dependency-groups;
}