fix(nix): follow root pyproject inputs

This commit is contained in:
WadydX
2026-06-03 16:13:10 +01:00
committed by Teknium
parent eab208db70
commit 5a5e7e2a46
2 changed files with 12 additions and 70 deletions

View File

@@ -14,10 +14,13 @@
uv2nix = {
url = "github:pyproject-nix/uv2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.pyproject-nix.follows = "pyproject-nix";
};
pyproject-build-systems = {
url = "github:pyproject-nix/build-system-pkgs";
inputs.nixpkgs.follows = "nixpkgs";
inputs.pyproject-nix.follows = "pyproject-nix";
inputs.uv2nix.follows = "uv2nix";
};
npm-lockfile-fix = {
url = "github:jeslie0/npm-lockfile-fix";