bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gibberish-detector,
|
|
mock,
|
|
pkgs,
|
|
pyahocorasick,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
requests,
|
|
responses,
|
|
setuptools,
|
|
unidiff,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bc-detect-secrets";
|
|
version = "1.5.12";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bridgecrewio";
|
|
repo = "detect-secrets";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-njTVA1H0QM0PHIHe/Vc4IJtbgTyWdytqPv0RRnTY6cw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
pyyaml
|
|
requests
|
|
unidiff
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
word_list = [ pyahocorasick ];
|
|
gibberish = [ gibberish-detector ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pkgs.gitMinimal
|
|
pytestCheckHook
|
|
responses
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Tests are failing for various reasons (missing git repo, missing test data, etc.)
|
|
"test_baseline_filters_out_known_secrets"
|
|
"test_make_decisions"
|
|
"test_saves_to_baseline"
|
|
"test_start_halfway"
|
|
"TestCreate"
|
|
"TestDiff"
|
|
"TestGetFilesToScan"
|
|
"TestLineNumberChanges"
|
|
"TestModifiesBaselineFromVersionChange"
|
|
];
|
|
|
|
pythonImportsCheck = [ "detect_secrets" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to detect secrets in the code";
|
|
homepage = "https://github.com/bridgecrewio/detect-secrets";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|