mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
sipvicious: refactor
- add dependencies - add manpages - use python3.pkgs
This commit is contained in:
parent
d50918bc1c
commit
b4efe534c9
@ -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 ];
|
||||
};
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user