{ stdenv , python3 , fetchFromGitHub , nix , git , lib }: python3.pkgs.buildPythonApplication rec { pname = "nixpkgs-review"; version = "2.4.2"; src = fetchFromGitHub { owner = "Mic92"; repo = "nixpkgs-review"; rev = version; sha256 = "0qc2m2nr7w7sgpg3yzwfxxpqi9acnw46kj2hlalg5ldjffiqdjxa"; }; makeWrapperArgs = [ "--prefix" "PATH" ":" (lib.makeBinPath [ nix git ]) ]; meta = with stdenv.lib; { description = "Review pull-requests on https://github.com/NixOS/nixpkgs"; homepage = "https://github.com/Mic92/nixpkgs-review"; license = licenses.mit; maintainers = [ maintainers.mic92 ]; }; }