{ lib , python3 , fetchFromGitHub , nix , nix-prefetch-git , nixpkgs-fmt , nixpkgs-review }: python3.pkgs.buildPythonApplication rec { pname = "nix-update"; version = "0.19.3"; pyproject = true; src = fetchFromGitHub { owner = "Mic92"; repo = pname; rev = version; hash = "sha256-+WD+SV/L3TvksWBIg6jk+T0dUTNdp4VKONzdzVT+pac="; }; nativeBuildInputs = [ python3.pkgs.setuptools ]; makeWrapperArgs = [ "--prefix" "PATH" ":" (lib.makeBinPath [ nix nix-prefetch-git nixpkgs-fmt nixpkgs-review ]) ]; checkPhase = '' $out/bin/nix-update --help >/dev/null ''; meta = with lib; { description = "Swiss-knife for updating nix packages"; inherit (src.meta) homepage; changelog = "https://github.com/Mic92/nix-update/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ figsoda mic92 zowoq ]; platforms = platforms.all; }; }