summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-big-picture/default.nix
blob: ec832866c717ab7418396921d614e3ea41030d45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ fetchFromGitHub, python3Packages, lib, stdenv, git, graphviz }:

python3Packages.buildPythonApplication rec {
  pname = "git-big-picture";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "git-big-picture";
    repo = pname;
    rev = "v${version}";
    sha256 = "14yf71iwgk78nw8w0bpijsnnl4vg3bvxsw3vvypxmbrc1nh0bdha";
  };

  buildInputs = [ git graphviz ];

  # NOTE: Tests are disabled due to unpackaged test dependency "Scruf".
  #       When bumping to 1.1.0, please re-enable and use:
  #checkInputs = [ cram git pytest ];
  #checkPhase = "pytest test.py";
  doCheck = false;

  postFixup = ''
    wrapProgram $out/bin/git-big-picture \
      --prefix PATH ":" ${ lib.makeBinPath buildInputs  }
    '';

  meta = {
    description = "Tool for visualization of Git repositories";
    homepage = "https://github.com/git-big-picture/git-big-picture";
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.nthorne ];
  };
}