33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
40 lines
990 B
Nix
40 lines
990 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, flask, pygments, dulwich, httpauth, humanize, pytest, requests, python-ctags3, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "klaus";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonashaag";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-kQcza2beyekJhRT9RwSdMIkeyapcUDtjgkapK3rocvg=";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace runtests.sh \
|
|
--replace "mkdir -p \$builddir" "mkdir -p \$builddir && pwd"
|
|
'';
|
|
|
|
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 = "The first Git web viewer that Just Works";
|
|
homepage = "https://github.com/jonashaag/klaus";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|