Files
nixpkgs/pkgs/development/python-modules/hakuin/default.nix
2026-03-23 06:55:54 +01:00

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 ];
};
}