2022-12-04T17:47:19 klaus 1.5.2 -> 2.0.2 https://pypi.org/project/klaus/ 2022-12-04T17:47:22 attrpath: klaus 2022-12-04T17:47:22 Checking auto update branch... 2022-12-04T17:47:22 No auto update branch exists 2022-12-04T17:47:23 Old version 1.5.2" not present in master derivation file with contents: { lib, buildPythonPackage, fetchFromGitHub, isPy3k, flask, pygments, dulwich, httpauth, humanize, pytest, requests, python-ctags3, mock }: buildPythonPackage rec { pname = "klaus"; version = "2.0.1"; src = fetchFromGitHub { owner = "jonashaag"; repo = pname; rev = version; sha256 = "sha256-a0MbKjDqPSMakjmGS5gfaDaPegQpK4QA+ZdG7skd9QU="; }; prePatch = '' substituteInPlace runtests.sh \ --replace "mkdir -p \$builddir" "mkdir -p \$builddir && pwd" ''; propagatedBuildInputs = [ flask pygments dulwich httpauth humanize ]; checkInputs = [ 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 ]; }; }