nixpkgs/pkgs/applications/version-management/gitinspector/default.nix

26 lines
687 B
Nix
Raw Permalink Normal View History

2016-11-09 10:39:16 +00:00
{ stdenv, fetchzip, 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 = "";
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 11:41:23 +00:00
name = "${pname}-${version}" + "-src";
2015-09-22 14:20:20 +00:00
};
checkInputs = with python2Packages; [
unittest2
];
2015-09-22 14:20:20 +00:00
meta = with stdenv.lib; {
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 ];
};
}