Files
nixpkgs/pkgs/development/python-modules/klaus/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

74 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 = "klaus";
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 = {
description = "First Git web viewer that Just Works";
mainProgram = "klaus";
homepage = "https://github.com/jonashaag/klaus";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ pSub ];
};
}