10 , withSandboxSupport ? false
13 python3.pkgs.buildPythonApplication rec {
14 pname = "nixpkgs-review";
17 src = fetchFromGitHub {
19 repo = "nixpkgs-review";
21 sha256 = "sha256-hGOcLrVPb+bSNA72ZfKE9Mjm2dr/qnuaCkjveHXPcws=";
26 binPath = [ nix git ] ++ lib.optional withSandboxSupport bubblewrap;
29 "--prefix PATH : ${lib.makeBinPath binPath}"
30 "--set NIX_SSL_CERT_FILE ${cacert}/etc/ssl/certs/ca-bundle.crt"
31 # we don't have any runtime deps but nix-review shells might inject unwanted dependencies
38 description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
39 homepage = "https://github.com/Mic92/nixpkgs-review";
40 license = licenses.mit;
41 maintainers = with maintainers; [ mic92 SuperSandro2000 ];