biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / git-big-picture / default.nix
bloba3ac58c04be8e93d05a67cbf56283c37b78036a7
1 { lib, python3Packages, fetchPypi, git, graphviz }:
3 python3Packages.buildPythonApplication rec {
4   pname = "git-big-picture";
5   version = "1.1.1";
6   format = "wheel";
8   src = fetchPypi {
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";
13   };
15   postFixup = ''
16     wrapProgram $out/bin/git-big-picture \
17       --prefix PATH ":" ${ lib.makeBinPath [ git graphviz ]  }
18   '';
20   meta = {
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";
26   };