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

27 lines
643 B
Nix
Raw Normal View History

{ 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 = "";
src = fetchFromGitHub {
owner = "ejwa";
repo = "gitinspector";
rev = "v${version}";
sha256 = "sha256-9bChvE5aAZFunu599pH7QKHZFd7aQzv0i9LURrvh2t0=";
2015-09-22 16:20:20 +02:00
};
checkInputs = with python2Packages; [
unittest2
];
meta = with lib; {
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 ];
};
}