mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-29 05:25:48 +00:00
45 lines
766 B
Nix
45 lines
766 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
jinja2,
|
|
nltk,
|
|
sqlglot,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hakuin";
|
|
version = "0.2.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pruzko";
|
|
repo = "hakuin";
|
|
tag = version;
|
|
hash = "sha256-97nh+woUsCXcoO2i5KprCwJiE24V3mg91qcNgy7bpgg=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
jinja2
|
|
nltk
|
|
sqlglot
|
|
];
|
|
|
|
# Module has no test
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "hakuin" ];
|
|
|
|
meta = {
|
|
description = "Blind SQL Injection optimization and automation framework";
|
|
homepage = "https://github.com/pruzko/hakuin";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|