You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
678 B
25 lines
678 B
{ 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 ]; |
|
}; |
|
}
|
|
|