mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 10:31:36 +00:00
ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
41 lines
929 B
Nix
41 lines
929 B
Nix
{ lib, python, fetchFromGitHub }:
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
|
pname = "klaus";
|
|
version = "1.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonashaag";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0hkl1ycyd5ccijmknr3yfp3ga43y01m7390xnibqqgaisfvcm9wp";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace runtests.sh \
|
|
--replace "mkdir -p \$builddir" "mkdir -p \$builddir && pwd"
|
|
'';
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
six flask pygments dulwich httpauth humanize
|
|
];
|
|
|
|
checkInputs = with python.pkgs; [
|
|
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; [ ];
|
|
};
|
|
}
|