Merge 'flake.nix: add uv dependency to nativeBuildInputs' from Ceferino Patino

`make test` fails when using the nix-shell environment due to `uv` not
being included in the list of dependencies with
`make: uv: No such file or directory
make: *** [Makefile:55: uv-sync-test] Error 127`
simple fix adding it to `nativeBuildInputs` of the shell. after that
runs as expected.

Reviewed-by: Levy A. (@levydsa)

Closes #2636
This commit is contained in:
Jussi Saurio
2025-08-25 09:18:15 +03:00
committed by GitHub

View File

@@ -71,6 +71,7 @@
python3
nodejs
toolchain
uv
] ++ lib.optionals pkgs.stdenv.isDarwin [
apple-sdk
];