Merge pull request #117409 from fabaff/sipvicious

sipvicious: init at 0.3.2
This commit is contained in:
Sandro 2021-03-24 13:09:15 +01:00 committed by GitHub
commit 6b74bbfb96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
}:
buildPythonApplication rec {
pname = "sipvicious";
version = "0.3.2";
src = fetchFromGitHub {
owner = "EnableSecurity";
repo = pname;
rev = "v${version}";
sha256 = "0hna4xyjhdwi6z2aqqp25ydkb1qznlil95w2iqrr576wcrciznd5";
};
# 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 ];
};
}

View file

@ -8090,6 +8090,8 @@ in
sipsak = callPackage ../tools/networking/sipsak { };
sipvicious = python3Packages.callPackage ../tools/security/sipvicious { };
siril = callPackage ../applications/science/astronomy/siril { };
sisco.lv2 = callPackage ../applications/audio/sisco.lv2 { };