1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/by-name/co/conkeyscan/package.nix
Fabian Affolter bf47ebf05f conkeyscan: init at 1.0.0
Tool to scan Confluence for keywords

https://github.com/CompassSecurity/conkeyscan
2024-06-22 15:58:24 +02:00

51 lines
1.1 KiB
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "conkeyscan";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "CompassSecurity";
repo = "conkeyscan";
rev = "refs/tags/${version}";
hash = "sha256-F5lYpETzv03O9I4vi4qnLgQLvBlv8bLtJQArxliO8JI=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail "{{VERSION_PLACEHOLDER}}" "${version}"
'';
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
atlassian-python-api
beautifulsoup4
clize
loguru
pysocks
random-user-agent
readchar
requests-ratelimiter
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "conkeyscan" ];
meta = with lib; {
description = "Tool to scan Confluence for keywords";
homepage = "https://github.com/CompassSecurity/conkeyscan";
changelog = "https://github.com/CompassSecurity/conkeyscan/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "conkeyscan";
};
}