73 lines
1.3 KiB
Nix
73 lines
1.3 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
fetchpatch,
|
||
|
isPy3k,
|
||
|
flask,
|
||
|
pygments,
|
||
|
dulwich,
|
||
|
httpauth,
|
||
|
humanize,
|
||
|
pytest,
|
||
|
requests,
|
||
|
python-ctags3,
|
||
|
mock,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "klaus";
|
||
|
version = "3.0.1";
|
||
|
format = "setuptools";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jonashaag";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
hash = "sha256-GflSDhBmMsQ34o3ApraEJ6GmlXXP2kK6WW3lsfr6b7g=";
|
||
|
};
|
||
|
|
||
|
prePatch = ''
|
||
|
substituteInPlace runtests.sh \
|
||
|
--replace "mkdir -p \$builddir" "mkdir -p \$builddir && pwd"
|
||
|
'';
|
||
|
|
||
|
# TODO: remove in next version
|
||
|
patches = [
|
||
|
(fetchpatch {
|
||
|
name = "distutils.patch";
|
||
|
url = "https://github.com/jonashaag/klaus/commit/d50d2aab97fd86c11f3b5a4c1ecbcf1e085f395f.patch";
|
||
|
hash = "sha256-gJ/ksm96VRNgqIBp+PX/ljzdfQJYbwTBmZaF2Ctu7Fc=";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
flask
|
||
|
pygments
|
||
|
dulwich
|
||
|
httpauth
|
||
|
humanize
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytest
|
||
|
requests
|
||
|
python-ctags3
|
||
|
] ++ lib.optional (!isPy3k) mock;
|
||
|
|
||
|
checkPhase = ''
|
||
|
./runtests.sh
|
||
|
'';
|
||
|
|
||
|
# Needs to set up some git repos
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "First Git web viewer that Just Works";
|
||
|
mainProgram = "klaus";
|
||
|
homepage = "https://github.com/jonashaag/klaus";
|
||
|
license = licenses.isc;
|
||
|
maintainers = with maintainers; [ pSub ];
|
||
|
};
|
||
|
}
|