From 97f8f97ca234e2a3a9f979729bdf513c4b5364bb Mon Sep 17 00:00:00 2001 From: Patrick Mulligan Date: Wed, 1 Apr 2026 23:52:31 -0400 Subject: [PATCH] Use dontCheckRuntimeDeps to skip fava dependency check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pythonRuntimeDepsCheck is not a valid attribute — the correct attribute is dontCheckRuntimeDeps. Co-Authored-By: Claude Opus 4.6 (1M context) --- fava.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fava.nix b/fava.nix index 8801fa1..74aca88 100644 --- a/fava.nix +++ b/fava.nix @@ -10,7 +10,7 @@ let # dependencies, avoiding duplicate package conflicts in the closure. stripFavaDep = ext: ext.overridePythonAttrs (old: { dependencies = builtins.filter (dep: (dep.pname or "") != "fava") (old.dependencies or []); - pythonRuntimeDepsCheck = false; + dontCheckRuntimeDeps = true; }); favaWithExtensions = if cfg.extensions == [] then cfg.package else