summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitinspector/default.nix
blob: 4e440d4bc6ab232729c39c76e12a38d96eaeb7df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchzip, buildPythonApplication }:

buildPythonApplication rec {
  name = "gitinspector-${version}";
  version = "0.4.1";
  namePrefix = "";

  src = fetchzip {
    url = "https://github.com/ejwa/gitinspector/archive/v${version}.tar.gz";
    sha256 = "07kjvf9cj6g6gvjgnnas5facm3nhxppf0l0fcxyd4vq6xhdb3swp";
    name = name + "-src";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/ejwa/gitinspector;
    description = "Statistical analysis tool for git repositories";
    license = licenses.gpl3;
    platforms = platforms.all;
    maintainers = [ maintainers.bjornfor ];
  };
}