nixpkgs/pkgs/by-name/sp/sploitscan/package.nix
Martin Weinelt 6b8de6bf3c
treewide: clean up pythonRelaxDepsHook references
Referencing it is not necessary any more, since using pythonRelaxDeps
or pythonRemoveDeps will automatically make sure the hook is provided.
2024-07-07 17:15:21 +02:00

44 lines
964 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "sploitscan";
version = "0.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "xaitax";
repo = "SploitScan";
rev = "refs/tags/v${version}";
hash = "sha256-UsCGmOjrfk5qsSsnWHEbS3boiC2RFb0Za++yBcCfdJY=";
};
pythonRelaxDeps = [
"openai"
"requests"
];
build-system = with python3.pkgs; [
setuptools
];
dependencies = with python3.pkgs; [
jinja2
openai
requests
];
pythonImportsCheck = [ "sploitscan" ];
meta = with lib; {
description = "Cybersecurity utility designed to provide detailed information on vulnerabilities and associated exploits";
homepage = "https://github.com/xaitax/SploitScan";
changelog = "https://github.com/xaitax/SploitScan/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "sploitscan";
};
}