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

22 lines
616 B
Nix
Raw Normal View History

{ stdenv, fetchzip, pythonPackages}:
2015-09-22 14:20:20 +00:00
pythonPackages.buildPythonApplication rec {
2015-09-22 14:20:20 +00:00
name = "gitinspector-${version}";
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";
2015-09-22 14:20:20 +00:00
name = name + "-src";
};
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 ];
};
}