nixpkgs/pkgs/tools/security/sipvicious/default.nix

28 lines
633 B
Nix
Raw Normal View History

2021-03-23 22:18:17 +00:00
{ lib
, buildPythonApplication
, fetchFromGitHub
}:
buildPythonApplication rec {
pname = "sipvicious";
2021-07-04 07:46:38 +00:00
version = "0.3.4";
2021-03-23 22:18:17 +00:00
src = fetchFromGitHub {
owner = "EnableSecurity";
repo = pname;
rev = "v${version}";
2021-07-04 07:46:38 +00:00
sha256 = "sha256-O8/9Vz/u8BoF1dfGceOJdzPPYLfkdBp2DkwA5WQ3dgo=";
2021-03-23 22:18:17 +00:00
};
# 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 ];
};
}