Commit 9e680e42 authored by figsoda's avatar figsoda
Browse files

nix-update: use pyproject

parent 68932019
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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 ])
  ];