Unverified Commit e4e88a02 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #317974 from fabaff/hakuin

python312Packages.hakuin: init at 0-unstable-2024-03-31
parents db70c2cb 0d5b0550
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5298,6 +5298,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 { };