nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 42 lines 743 B view raw
1{ 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 fetchFromGitHub, 6 hatchling, 7 jinja2, 8 nltk, 9}: 10 11buildPythonPackage rec { 12 pname = "hakuin"; 13 version = "0.2.2"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "pruzko"; 18 repo = "hakuin"; 19 tag = version; 20 hash = "sha256-97nh+woUsCXcoO2i5KprCwJiE24V3mg91qcNgy7bpgg="; 21 }; 22 23 build-system = [ hatchling ]; 24 25 dependencies = [ 26 aiohttp 27 jinja2 28 nltk 29 ]; 30 31 # Module has no test 32 doCheck = false; 33 34 pythonImportsCheck = [ "hakuin" ]; 35 36 meta = { 37 description = "Blind SQL Injection optimization and automation framework"; 38 homepage = "https://github.com/pruzko/hakuin"; 39 license = lib.licenses.mit; 40 maintainers = with lib.maintainers; [ fab ]; 41 }; 42}