aa22a5cdd4
Related #32244
26 lines
678 B
Nix
26 lines
678 B
Nix
{ stdenv, fetchzip, python2Packages}:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
name = "gitinspector-${version}";
|
|
version = "0.4.4";
|
|
namePrefix = "";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/ejwa/gitinspector/archive/v${version}.tar.gz";
|
|
sha256 = "1pfsw6xldm6jigs3nhysvqaxk8a0zf8zczgfkrp920as9sya3c7m";
|
|
name = name + "-src";
|
|
};
|
|
|
|
checkInputs = with python2Packages; [
|
|
unittest2
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|