ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
118 lines
2 KiB
Nix
118 lines
2 KiB
Nix
{ lib
|
|
, asgiref
|
|
, buildPythonPackage
|
|
, certifi
|
|
, charset-normalizer
|
|
, cvss
|
|
, deepl
|
|
, django
|
|
, fetchFromGitHub
|
|
, gql
|
|
, idna
|
|
, markdown-it-py
|
|
, mdurl
|
|
, pygments
|
|
, pytest
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, pyyaml
|
|
, reptor
|
|
, requests
|
|
, rich
|
|
, setuptools
|
|
, sqlparse
|
|
, termcolor
|
|
, tomli
|
|
, tomli-w
|
|
, tomlkit
|
|
, urllib3
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reptor";
|
|
version = "0.13";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Syslifters";
|
|
repo = "reptor";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-7jFS3GCaPeGBBxB++XTtIYh+m0uXTm5NHuLeIen0KYc=";
|
|
};
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
asgiref
|
|
certifi
|
|
charset-normalizer
|
|
cvss
|
|
django
|
|
idna
|
|
markdown-it-py
|
|
mdurl
|
|
pygments
|
|
pyyaml
|
|
requests
|
|
rich
|
|
sqlparse
|
|
termcolor
|
|
tomli
|
|
tomlkit
|
|
tomli-w
|
|
urllib3
|
|
xmltodict
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
ghostwriter = [
|
|
gql
|
|
] ++ gql.optional-dependencies.aiohttp;
|
|
translate = [
|
|
deepl
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
export PATH="$PATH:$out/bin";
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"reptor"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Tests want to use pip install dependencies
|
|
"reptor/plugins/importers/GhostWriter/tests/test_ghostwriter.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests need network access
|
|
"TestDummy"
|
|
"TestIntegration"
|
|
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to do automated pentest reporting with SysReptor";
|
|
mainProgram = "reptor";
|
|
homepage = "https://github.com/Syslifters/reptor";
|
|
changelog = "https://github.com/Syslifters/reptor/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|