2016-11-09 10:39:16 +00:00
|
|
|
{ stdenv, fetchzip, python2Packages}:
|
2015-09-22 15:20:20 +01:00
|
|
|
|
2016-11-09 10:39:16 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2015-09-22 15:20:20 +01:00
|
|
|
name = "gitinspector-${version}";
|
2016-02-28 10:01:25 +00:00
|
|
|
version = "0.4.4";
|
2015-09-22 15:20:20 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/ejwa/gitinspector/archive/v${version}.tar.gz";
|
2016-02-28 10:01:25 +00:00
|
|
|
sha256 = "1pfsw6xldm6jigs3nhysvqaxk8a0zf8zczgfkrp920as9sya3c7m";
|
2015-09-22 15:20:20 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|