python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / wad / default.nix
blob9b284a42a0186285b43d4ec43b29f161648a7d44
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   checkInputs = 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     longDescription = ''
34       WAD lets you analyze given URL(s) and detect technologies used by web
35       application behind that URL, from the OS and web server level, to the
36       programming platform and frameworks, as well as server- and client-side
37       applications, tools and libraries.
38     '';
39     homepage = "https://github.com/CERN-CERT/WAD";
40     # wad is GPLv3+, wappalyzer source is MIT
41     license = with licenses; [ gpl3Plus mit ];
42     maintainers = with maintainers; [ fab ];
43   };