2021-11-02 14:23:58 +01:00
|
|
|
{ lib, fetchFromGitHub, python2Packages }:
|
2015-09-22 16:20:20 +02:00
|
|
|
|
2016-11-09 11:39:16 +01:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "gitinspector";
|
2016-02-28 11:01:25 +01:00
|
|
|
version = "0.4.4";
|
2015-09-22 16:20:20 +02:00
|
|
|
namePrefix = "";
|
|
|
|
|
2021-11-02 14:23:58 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ejwa";
|
|
|
|
repo = "gitinspector";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-9bChvE5aAZFunu599pH7QKHZFd7aQzv0i9LURrvh2t0=";
|
2015-09-22 16:20:20 +02:00
|
|
|
};
|
|
|
|
|
2017-12-21 12:12:33 +01:00
|
|
|
checkInputs = with python2Packages; [
|
|
|
|
unittest2
|
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/ejwa/gitinspector";
|
2015-09-22 16:20:20 +02:00
|
|
|
description = "Statistical analysis tool for git repositories";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|