sipvicious: refactor

- add dependencies
- add manpages
- use python3.pkgs
This commit is contained in:
Fabian Affolter 2024-03-27 12:02:03 +01:00
parent d50918bc1c
commit b4efe534c9
2 changed files with 28 additions and 8 deletions

View File

@ -1,26 +1,46 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
, installShellFiles
, python3
}:
buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "sipvicious";
version = "0.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "EnableSecurity";
repo = pname;
rev = "v${version}";
sha256 = "sha256-O8/9Vz/u8BoF1dfGceOJdzPPYLfkdBp2DkwA5WQ3dgo=";
repo = "sipvicious";
rev = "refs/tags/v${version}";
hash = "sha256-O8/9Vz/u8BoF1dfGceOJdzPPYLfkdBp2DkwA5WQ3dgo=";
};
build-system = [
installShellFiles
] ++ (with python3.pkgs; [
setuptools
]);
dependencies = with python3.pkgs; [
scapy
];
postInstall = ''
installManPage man1/*.1
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "sipvicious" ];
pythonImportsCheck = [
"sipvicious"
];
meta = with lib; {
description = " Set of tools to audit SIP based VoIP systems";
description = "Set of tools to audit SIP based VoIP systems";
homepage = "https://github.com/EnableSecurity/sipvicious";
changelog = "https://github.com/EnableSecurity/sipvicious/releases/tag/v${version}";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};

View File

@ -13125,7 +13125,7 @@ with pkgs;
sipsak = callPackage ../tools/networking/sipsak { };
sipvicious = python3Packages.callPackage ../tools/security/sipvicious { };
sipvicious = callPackage ../tools/security/sipvicious { };
siril = callPackage ../applications/science/astronomy/siril { };