nixpkgs/pkgs/tools/security/ghauri/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
911 B
Nix
Raw Normal View History

2023-03-22 16:09:13 -04:00
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "ghauri";
2024-06-06 04:08:49 -04:00
version = "1.3.4";
2024-06-07 03:25:15 -04:00
pyproject = true;
2023-03-22 16:09:13 -04:00
src = fetchFromGitHub {
owner = "r0oth3x49";
repo = "ghauri";
2023-04-28 19:13:30 -04:00
rev = "refs/tags/${version}";
2024-06-06 04:08:49 -04:00
hash = "sha256-1xrswAxavUz3ybmT0E00pjiR8pmHvuBXE4zhAPnz5MQ=";
2023-03-22 16:09:13 -04:00
};
2024-06-07 03:25:15 -04:00
build-system = with python3.pkgs; [
setuptools
];
dependencies = with python3.pkgs; [
2023-03-22 16:09:13 -04:00
chardet
colorama
requests
tldextract
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"ghauri"
];
meta = with lib; {
description = "Tool for detecting and exploiting SQL injection security flaws";
homepage = "https://github.com/r0oth3x49/ghauri";
changelog = "https://github.com/r0oth3x49/ghauri/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
2024-06-07 03:25:15 -04:00
mainProgram = "ghauri";
2023-03-22 16:09:13 -04:00
};
}