nix-update: use pyproject

This commit is contained in:
figsoda 2023-09-08 20:44:23 -04:00
parent 6893201945
commit 9e680e422f

View File

@ -10,7 +10,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "nix-update";
version = "0.19.3";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "Mic92";
@ -19,6 +19,10 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-+WD+SV/L3TvksWBIg6jk+T0dUTNdp4VKONzdzVT+pac=";
};
nativeBuildInputs = [
python3.pkgs.setuptools
];
makeWrapperArgs = [
"--prefix" "PATH" ":" (lib.makeBinPath [ nix nix-prefetch-git nixpkgs-fmt nixpkgs-review ])
];