6 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
14 rev = "refs/tags/v${version}";
15 hash = "sha256-SCyCANZfi7PqexM2Kc8WJwwEEiBQxPBg0ggWsK9WB4k=";
18 build-system = with python3.pkgs; [ setuptools ];
20 propagatedBuildInputs = with python3.pkgs; [ docopt];
22 nativeCheckInputs = with python3.pkgs; [
28 pythonImportsCheck = [ "ioc_scan" ];
31 description = "Tool to search a filesystem for indicators of compromise (IoC)";
32 homepage = "https://github.com/cisagov/ioc-scanner";
33 changelog = "https://github.com/cisagov/ioc-scanner/releases/tag/v${version}";
34 license = with licenses; [ cc0 ];
35 maintainers = with maintainers; [ fab ];