From 66265a0571347ce6c88f940d79869002b09af0ca Mon Sep 17 00:00:00 2001 From: dvir pashut <72396086+dvir-pashut@users.noreply.github.com> Date: Thu, 28 May 2026 11:52:31 +0300 Subject: [PATCH] fix(nix): drop stale "vercel" group from #full variant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `vercel` optional-dependency was removed from pyproject.toml in #33067, but `nix/packages.nix` (added a few hours later in #33108) still references `"vercel"` in the `#full` variant's `extraDependencyGroups`. uv2nix fails evaluation with: error: Extra/group name 'vercel' does not match either extra or dependency group Because `nix/devShell.nix` does `inputsFrom = builtins.attrValues self'.packages`, the broken `#full` derivation is pulled into the dev shell too, so `nix develop` / direnv breaks on a fresh clone — not just `nix build .#full`. --- nix/packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nix/packages.nix b/nix/packages.nix index a72a0d414..729ee5837 100644 --- a/nix/packages.nix +++ b/nix/packages.nix @@ -43,7 +43,6 @@ "modal" "parallel-web" "tts-premium" - "vercel" "voice" ] ++ lib.optionals pkgs.stdenv.isLinux [ "matrix" ]; };