lol
1{ stdenv, fetchzip, python2Packages}:
2
3python2Packages.buildPythonApplication rec {
4 name = "gitinspector-${version}";
5 version = "0.4.4";
6 namePrefix = "";
7
8 src = fetchzip {
9 url = "https://github.com/ejwa/gitinspector/archive/v${version}.tar.gz";
10 sha256 = "1pfsw6xldm6jigs3nhysvqaxk8a0zf8zczgfkrp920as9sya3c7m";
11 name = name + "-src";
12 };
13
14 checkInputs = with python2Packages; [
15 unittest2
16 ];
17
18 meta = with stdenv.lib; {
19 homepage = https://github.com/ejwa/gitinspector;
20 description = "Statistical analysis tool for git repositories";
21 license = licenses.gpl3;
22 platforms = platforms.all;
23 maintainers = [ maintainers.bjornfor ];
24 };
25}