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 {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "gitinspector";
|
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";
|
2019-08-31 12:41:23 +01:00
|
|
|
name = "${pname}-${version}" + "-src";
|
2015-09-22 15:20:20 +01:00
|
|
|
};
|
|
|
|
|
2017-12-21 11:12:33 +00:00
|
|
|
checkInputs = with python2Packages; [
|
|
|
|
unittest2
|
|
|
|
];
|
|
|
|
|
2015-09-22 15:20:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ejwa/gitinspector";
|
2015-09-22 15:20:20 +01:00
|
|
|
description = "Statistical analysis tool for git repositories";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|