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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
633 B
Nix
Raw Normal View History

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