mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-17 20:58:30 +00:00
atomic-operator: init at 0.8.5
This commit is contained in:
parent
ee4b07bdd0
commit
4ecbbe3805
54
pkgs/tools/security/atomic-operator/default.nix
Normal file
54
pkgs/tools/security/atomic-operator/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ 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-fO8bvzeMdJVWlhpzdTmJo9mrT6iorsLqr/GPF9gvE70=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
attrs
|
||||
certifi
|
||||
chardet
|
||||
charset-normalizer
|
||||
fire
|
||||
idna
|
||||
paramiko
|
||||
pick
|
||||
pypsrp
|
||||
pyyaml
|
||||
requests
|
||||
urllib3
|
||||
];
|
||||
|
||||
checkInputs = 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)";
|
||||
homepage = "https://www.atomic-operator.com/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -255,6 +255,8 @@ with pkgs;
|
||||
|
||||
authz0 = callPackage ../tools/security/authz0 { };
|
||||
|
||||
atomic-operator = callPackage ../tools/security/atomic-operator { };
|
||||
|
||||
avro-tools = callPackage ../development/tools/avro-tools { };
|
||||
|
||||
bacnet-stack = callPackage ../tools/networking/bacnet-stack {};
|
||||
|
Loading…
Reference in New Issue
Block a user