1 { lib, python3Packages, fetchPypi, git, graphviz }:
3 python3Packages.buildPythonApplication rec {
4 pname = "git-big-picture";
9 inherit format version;
10 pname = "git_big_picture"; # underscores needed for working download URL
11 python = "py3"; # i.e. no Python 2.7
12 sha256 = "a20a480057ced1585c4c38497d27a5012f12dd29697313f0bb8fa6ddbb5c17d8";
16 wrapProgram $out/bin/git-big-picture \
17 --prefix PATH ":" ${ lib.makeBinPath [ git graphviz ] }
21 description = "Tool for visualization of Git repositories";
22 homepage = "https://github.com/git-big-picture/git-big-picture";
23 license = lib.licenses.gpl3Plus;
24 maintainers = [ lib.maintainers.nthorne ];
25 mainProgram = "git-big-picture";