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

45 lines
911 B
Nix
Raw Normal View History

2023-03-22 20:09:13 +00:00
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "ghauri";
2024-08-27 03:51:56 +00:00
version = "1.3.7";
2024-06-07 07:25:15 +00:00
pyproject = true;
2023-03-22 20:09:13 +00:00
src = fetchFromGitHub {
owner = "r0oth3x49";
repo = "ghauri";
2023-04-28 23:13:30 +00:00
rev = "refs/tags/${version}";
2024-08-27 03:51:56 +00:00
hash = "sha256-uGRhp77HmLmWMJFyhJoEjwdIR84Wcwv554g9Hi6yW4c=";
2023-03-22 20:09:13 +00:00
};
2024-06-07 07:25:15 +00:00
build-system = with python3.pkgs; [
setuptools
];
dependencies = with python3.pkgs; [
2023-03-22 20:09:13 +00: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 07:25:15 +00:00
mainProgram = "ghauri";
2023-03-22 20:09:13 +00:00
};
}