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