7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
13 owner = "CompassSecurity";
15 rev = "refs/tags/${version}";
16 hash = "sha256-F5lYpETzv03O9I4vi4qnLgQLvBlv8bLtJQArxliO8JI=";
20 substituteInPlace setup.py \
21 --replace-fail "{{VERSION_PLACEHOLDER}}" "${version}"
24 build-system = with python3.pkgs; [ setuptools ];
26 dependencies = with python3.pkgs; [
37 # Project has no tests
40 pythonImportsCheck = [ "conkeyscan" ];
43 description = "Tool to scan Confluence for keywords";
44 homepage = "https://github.com/CompassSecurity/conkeyscan";
45 changelog = "https://github.com/CompassSecurity/conkeyscan/releases/tag/${version}";
46 license = licenses.mit;
47 maintainers = with maintainers; [ fab ];
48 mainProgram = "conkeyscan";