commit
0dc49afa07
2 changed files with 50 additions and 0 deletions
|
@ -12943,6 +12943,13 @@
|
||||||
fingerprint = "939E F8A5 CED8 7F50 5BB5 B2D0 24BC 2738 5F70 234F";
|
fingerprint = "939E F8A5 CED8 7F50 5BB5 B2D0 24BC 2738 5F70 234F";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
octodi = {
|
||||||
|
name = "octodi";
|
||||||
|
email = "octodi@proton.me";
|
||||||
|
matrix = "@octodi:matrix.org";
|
||||||
|
github = "octodi";
|
||||||
|
githubId = 127038896;
|
||||||
|
};
|
||||||
oddlama = {
|
oddlama = {
|
||||||
email = "oddlama@oddlama.org";
|
email = "oddlama@oddlama.org";
|
||||||
github = "oddlama";
|
github = "oddlama";
|
||||||
|
|
43
pkgs/by-name/ar/arjun/package.nix
Normal file
43
pkgs/by-name/ar/arjun/package.nix
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
{ lib
|
||||||
|
, python3
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "arjun";
|
||||||
|
version = "2.2.1";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "s0md3v";
|
||||||
|
repo = "Arjun";
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
hash = "sha256-YxfUlD7aBwoYYsZE0zTZxoXg1TgU2yT1V+mglmsXtlo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
|
setuptools
|
||||||
|
wheel
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
requests
|
||||||
|
dicttoxml
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"arjun"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "HTTP parameter discovery suite";
|
||||||
|
homepage = "https://github.com/s0md3v/Arjun";
|
||||||
|
changelog = "https://github.com/s0md3v/Arjun/blob/${version}/CHANGELOG.md";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ octodi ];
|
||||||
|
mainProgram = "arjun";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue