1{ lib
2, buildPythonApplication
3, fetchFromGitHub
4}:
5
6buildPythonApplication rec {
7 pname = "sipvicious";
8 version = "0.3.4";
9
10 src = fetchFromGitHub {
11 owner = "EnableSecurity";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-O8/9Vz/u8BoF1dfGceOJdzPPYLfkdBp2DkwA5WQ3dgo=";
15 };
16
17 # Project has no tests
18 doCheck = false;
19 pythonImportsCheck = [ "sipvicious" ];
20
21 meta = with lib; {
22 description = " Set of tools to audit SIP based VoIP systems";
23 homepage = "https://github.com/EnableSecurity/sipvicious";
24 license = with licenses; [ gpl3Plus ];
25 maintainers = with maintainers; [ fab ];
26 };
27}