Activation reaches plugin discovery before the application dependencies exist. Give PM its own locked Python project and runtime so it can install or repair the application without importing that dependency tree. Keep PM outside the application workspace. A shared uv workspace resolves the application graph and cannot provide this isolation. Route mutations through an isolated worker and preserve transaction callbacks, cancellation, custom package registrations, and correlated receipts. Use the same runtime builder for source installs and packaged payloads. Keep offline wheelhouse support in that builder. Nix builds the independent PM lock as a separate derivation. Refuse lazy-disabled bootstrap before installing tools or dependencies. Move first-party YAML readers and writers to ruamel. Keep the application lock's transitive PyYAML requirements for third-party packages. Verification: - Focused canonical Python suite: 177 passed, 1 host-gated skip. - Electron backend probes: 12 passed. Electron typecheck passed. - Both uv locks, scoped lint, Bash syntax, and whitespace checks passed. - Cold activation, corrupt-app repair, offline staging, and relocation ran. - Built and exercised the Nix PM runtime and standalone YAML merge script. Six broader caller test files retain the same 24 failing test IDs as an archive of HEAD. The existing real-home guard blocks those tests before they can exercise the affected paths. No full-suite pass is claimed. Native Windows signing and full Bionic package execution remain unverified.
29 lines
954 B
Nix
29 lines
954 B
Nix
# PM's dependency graph must remain independent of the application closure.
|
|
{
|
|
lib,
|
|
callPackage,
|
|
uv2nix,
|
|
pyproject-nix,
|
|
pyproject-build-systems,
|
|
}:
|
|
let
|
|
python = (callPackage ./pythonLock.nix { }).interpreter;
|
|
workspace = uv2nix.lib.workspace.loadWorkspace { workspaceRoot = ../pm; };
|
|
pythonSet = (callPackage pyproject-nix.build.packages { inherit python; }).overrideScope (
|
|
lib.composeManyExtensions [
|
|
pyproject-build-systems.overlays.default
|
|
(workspace.mkPyprojectOverlay { sourcePreference = "wheel"; })
|
|
]
|
|
);
|
|
environment = pythonSet.mkVirtualEnv "hermes-pm-runtime" workspace.deps.default;
|
|
in
|
|
# Nix owns this environment; no runtime download or uv resolution is needed.
|
|
environment.overrideAttrs (old: {
|
|
postInstall = (old.postInstall or "") + ''
|
|
printf '%s\n' '${builtins.toJSON {
|
|
python = "${python}/bin/python3";
|
|
sitePackages = python.sitePackages;
|
|
}}' > "$out/pm-runtime.json"
|
|
'';
|
|
})
|