Use dontCheckRuntimeDeps to skip fava dependency check
pythonRuntimeDepsCheck is not a valid attribute — the correct attribute is dontCheckRuntimeDeps. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c1b0038d5a
commit
97f8f97ca2
1 changed files with 1 additions and 1 deletions
2
fava.nix
2
fava.nix
|
|
@ -10,7 +10,7 @@ let
|
||||||
# dependencies, avoiding duplicate package conflicts in the closure.
|
# dependencies, avoiding duplicate package conflicts in the closure.
|
||||||
stripFavaDep = ext: ext.overridePythonAttrs (old: {
|
stripFavaDep = ext: ext.overridePythonAttrs (old: {
|
||||||
dependencies = builtins.filter (dep: (dep.pname or "") != "fava") (old.dependencies or []);
|
dependencies = builtins.filter (dep: (dep.pname or "") != "fava") (old.dependencies or []);
|
||||||
pythonRuntimeDepsCheck = false;
|
dontCheckRuntimeDeps = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
favaWithExtensions = if cfg.extensions == [] then cfg.package else
|
favaWithExtensions = if cfg.extensions == [] then cfg.package else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue