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.
This commit is contained in:
Konstantin Fickel 2026-02-15 17:32:39 +01:00
parent ce5e476b23
commit ca6b5bbd4d
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -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 = ./.;