From ca6b5bbd4d872257d3ed53be1e68e0fe3385b256 Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sun, 15 Feb 2026 17:32:39 +0100 Subject: [PATCH] fix: include dev deps in basedpyright check environment Use workspace.deps.all instead of workspace.deps.default so that basedpyright can resolve test dependencies like faker. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 02359db..32093d0 100644 --- a/flake.nix +++ b/flake.nix @@ -108,7 +108,7 @@ let pkgs = nixpkgs.legacyPackages.${system}; pythonSet = pythonSets.${system}; - venv = pythonSet.mkVirtualEnv "streamd-check-env" workspace.deps.default; + venv = pythonSet.mkVirtualEnv "streamd-check-env" workspace.deps.all; in git-hooks.lib.${system}.run { src = ./.;