about summary refs log tree commit diff
path: root/pkgs/tools/security/sipvicious/default.nix
blob: 1167d40e432788e4de4edaad7103ca5a590e96b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonApplication
, fetchFromGitHub
}:

buildPythonApplication rec {
  pname = "sipvicious";
  version = "0.3.4";

  src = fetchFromGitHub {
    owner = "EnableSecurity";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-O8/9Vz/u8BoF1dfGceOJdzPPYLfkdBp2DkwA5WQ3dgo=";
  };

  # Project has no tests
  doCheck = false;
  pythonImportsCheck = [ "sipvicious" ];

  meta = with lib; {
    description = " Set of tools to audit SIP based VoIP systems";
    homepage = "https://github.com/EnableSecurity/sipvicious";
    license = with licenses; [ gpl3Plus ];
    maintainers = with maintainers; [ fab ];
  };
}