mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
677 B
Nix
26 lines
677 B
Nix
{ lib, fetchzip, python2Packages}:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "gitinspector";
|
|
version = "0.4.4";
|
|
namePrefix = "";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/ejwa/gitinspector/archive/v${version}.tar.gz";
|
|
sha256 = "1pfsw6xldm6jigs3nhysvqaxk8a0zf8zczgfkrp920as9sya3c7m";
|
|
name = "${pname}-${version}" + "-src";
|
|
};
|
|
|
|
checkInputs = with python2Packages; [
|
|
unittest2
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ejwa/gitinspector";
|
|
description = "Statistical analysis tool for git repositories";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|