about summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitinspector/default.nix
blob: 63ceb6e3868f0ba27609f7f16d64969d47be7ff4 (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
{ lib, fetchFromGitHub, python2Packages }:

python2Packages.buildPythonApplication rec {
  pname = "gitinspector";
  version = "0.4.4";
  namePrefix = "";

  src = fetchFromGitHub {
    owner = "ejwa";
    repo = "gitinspector";
    rev = "v${version}";
    sha256 = "sha256-9bChvE5aAZFunu599pH7QKHZFd7aQzv0i9LURrvh2t0=";
  };

  checkInputs = with python2Packages; [
    unittest2
  ];

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