Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / acunetix / default.nix
blobb28a6beefbc72e4fad43deab1f8899194507b2c0
1 { lib
2 , aiofiles
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 , requests
7 }:
9 buildPythonPackage rec {
10   pname = "acunetix";
11   version = "0.0.7";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "hikariatama";
18     repo = "acunetix";
19     # https://github.com/hikariatama/acunetix/issues/1
20     rev = "67584746731b9f7abd1cf10ff8161eb3085800ce";
21     hash = "sha256-ycdCz8CNSP0USxv657jf6Vz4iF//reCeO2tG+und86A=";
22   };
24   propagatedBuildInputs = [
25     aiofiles
26     requests
27   ];
29   # Module has no tests
30   doCheck = false;
32   pythonImportsCheck = [
33     "acunetix"
34   ];
36   meta = with lib; {
37     description = "Acunetix Web Vulnerability Scanner SDK for Python";
38     homepage = "https://github.com/hikariatama/acunetix";
39     license = licenses.agpl3Only;
40     maintainers = with maintainers; [ fab ];
41   };