about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/nu/nucleiparser/package.nix
blob: 6814b4e94575437a537f0ab18e234596bc6fc277 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonApplication rec {
  pname = "nucleiparser";
  version = "unstable-2023-12-26";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "sinkmanu";
    repo = "nucleiparser";
    # https://github.com/Sinkmanu/nucleiparser/issues/1
    rev = "42f3d57c70300c436497c2539cdb3c49977fc48d";
    hash = "sha256-/SLaRuO06rF7aLV7zY7tfIxkJRzsx+/Z+mc562RX2OQ=";
  };

  nativeBuildInputs = with python3.pkgs; [
    setuptools
  ];

  propagatedBuildInputs = with python3.pkgs; [
    prettytable
  ];

  pythonImportsCheck = [
    "nucleiparser"
  ];

  meta = with lib; {
    description = "A Nuclei output parser for CLI";
    homepage = "https://github.com/sinkmanu/nucleiparser";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
    mainProgram = "nparser";
  };
}