Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ar / arjun / package.nix
blob685195c91d4297a0b05e0423afb1cee61fc1cbb2
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "arjun";
8   version = "2.2.2";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "s0md3v";
13     repo = "Arjun";
14     rev = "refs/tags/${version}";
15     hash = "sha256-odVUFs517RSp66MymniSeTKTntQtXomjC68Hhdsglf0=";
16   };
18   nativeBuildInputs = with python3.pkgs; [
19     setuptools
20     wheel
21   ];
23   propagatedBuildInputs = with python3.pkgs; [
24     requests
25     dicttoxml
26   ];
28   # Project has no tests
29   doCheck = false;
31   pythonImportsCheck = [
32     "arjun"
33   ];
35   meta = with lib; {
36     description = "HTTP parameter discovery suite";
37     homepage = "https://github.com/s0md3v/Arjun";
38     changelog = "https://github.com/s0md3v/Arjun/blob/${version}/CHANGELOG.md";
39     license = licenses.gpl3Only;
40     maintainers = with maintainers; [ octodi ];
41     mainProgram = "arjun";
42   };