python312Packages.hakuin: init at 0-unstable-2024-03-31
Blind SQL Injection optimization and automation framework https://github.com/pruzko/hakuin
This commit is contained in:
parent
8ff6ad5d85
commit
0d5b0550c0
42
pkgs/development/python-modules/hakuin/default.nix
Normal file
42
pkgs/development/python-modules/hakuin/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
jinja2,
|
||||
nltk,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hakuin";
|
||||
version = "0-unstable-2024-03-31";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pruzko";
|
||||
repo = "hakuin";
|
||||
rev = "3b7b76dcbfb8ab2b98e6dee08df02158327af772";
|
||||
hash = "sha256-tRjo9a0ZCBjKxbXTkiKFzfL4pL5awF5vXmsJlYxwoIw=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
jinja2
|
||||
nltk
|
||||
];
|
||||
|
||||
# Module has no test
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "hakuin" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Blind SQL Injection optimization and automation framework";
|
||||
homepage = "https://github.com/pruzko/hakuin";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -5282,6 +5282,8 @@ self: super: with self; {
|
||||
|
||||
hahomematic = callPackage ../development/python-modules/hahomematic { };
|
||||
|
||||
hakuin = callPackage ../development/python-modules/hakuin { };
|
||||
|
||||
halo = callPackage ../development/python-modules/halo { };
|
||||
|
||||
halohome = callPackage ../development/python-modules/halohome { };
|
||||
|
Loading…
Reference in New Issue
Block a user