biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / wad / default.nix
blob348a35ccbe10d31335dbdd8e8c88dbfa22b182c4
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "wad";
8   version = "0.4.6";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "CERN-CERT";
13     repo = "WAD";
14     rev = "v${version}";
15     hash = "sha256-/mlmOzFkyKpmK/uk4813Wk0cf/+ynX3Qxafnd1mGR5k=";
16   };
18   propagatedBuildInputs = with python3.pkgs; [
19     six
20   ];
22   nativeCheckInputs = with python3.pkgs; [
23     mock
24     pytestCheckHook
25   ];
27   pythonImportsCheck = [
28     "wad"
29   ];
31   meta = with lib; {
32     description = "Tool for detecting technologies used by web applications";
33     mainProgram = "wad";
34     longDescription = ''
35       WAD lets you analyze given URL(s) and detect technologies used by web
36       application behind that URL, from the OS and web server level, to the
37       programming platform and frameworks, as well as server- and client-side
38       applications, tools and libraries.
39     '';
40     homepage = "https://github.com/CERN-CERT/WAD";
41     # wad is GPLv3+, wappalyzer source is MIT
42     license = with licenses; [ gpl3Plus mit ];
43     maintainers = with maintainers; [ fab ];
44   };