world-serpant-search: init at 1.2.1
Command-line tool for vulnerability detection https://github.com/Latrodect/wss-repo-vulnerability-search-manager
This commit is contained in:
parent
3d8b76d951
commit
2bf5348a35
39
pkgs/by-name/wo/world-serpant-search/package.nix
Normal file
39
pkgs/by-name/wo/world-serpant-search/package.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "world-serpant-search";
|
||||
version = "1.2.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Latrodect";
|
||||
repo = "wss-repo-vulnerability-search-manager";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-jXTivaXHHt63u9N7w40jyLUU2kg5LxAn50PVpqwUc0M=";
|
||||
};
|
||||
|
||||
build-system = with python3.pkgs; [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
alive-progress
|
||||
colorlog
|
||||
requests
|
||||
termcolor
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command-line tool for vulnerability detection";
|
||||
homepage = "https://github.com/Latrodect/wss-repo-vulnerability-search-manager";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab];
|
||||
mainProgram = "serpant";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user