nixpkgs-immich/pkgs/tools/security/atomic-operator/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.2 KiB
Nix
Raw Normal View History

2024-09-17 10:23:40 -06:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "atomic-operator";
version = "0.8.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "swimlane";
repo = pname;
rev = version;
hash = "sha256-DyNqu3vndyLkmfybCfTbgxk3t/ALg7IAkAMg4kBkH7Q=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "charset_normalizer~=2.0.0" "charset_normalizer"
'';
propagatedBuildInputs = with python3.pkgs; [
attrs
certifi
chardet
charset-normalizer
fire
idna
paramiko
pick
pypsrp
pyyaml
requests
urllib3
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
];
pythonImportsCheck = [
"atomic_operator"
];
disabledTests = [
# Tests require network access
"test_download_of_atomic_red_team_repo"
"test_setting_input_arguments"
"test_config_parser"
];
meta = with lib; {
description = "Tool to execute Atomic Red Team tests (Atomics)";
mainProgram = "atomic-operator";
homepage = "https://www.atomic-operator.com/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}