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

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

41 lines
866 B
Nix
Raw Normal View History

2023-03-22 20:09:13 +00:00
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "ghauri";
2024-06-06 08:08:49 +00:00
version = "1.3.4";
2023-03-22 20:09:13 +00:00
format = "setuptools";
src = fetchFromGitHub {
owner = "r0oth3x49";
repo = "ghauri";
2023-04-28 23:13:30 +00:00
rev = "refs/tags/${version}";
2024-06-06 08:08:49 +00:00
hash = "sha256-1xrswAxavUz3ybmT0E00pjiR8pmHvuBXE4zhAPnz5MQ=";
2023-03-22 20:09:13 +00:00
};
propagatedBuildInputs = with python3.pkgs; [
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";
mainProgram = "ghauri";
2023-03-22 20:09:13 +00:00
homepage = "https://github.com/r0oth3x49/ghauri";
changelog = "https://github.com/r0oth3x49/ghauri/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}