{ lib, buildPythonPackage, fetchFromGitHub, gibberish-detector, mock, pkgs, pyahocorasick, pytestCheckHook, pythonOlder, pyyaml, requests, responses, setuptools, unidiff, }: buildPythonPackage rec { pname = "bc-detect-secrets"; version = "1.5.17"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = "detect-secrets"; rev = "refs/tags/${version}"; hash = "sha256-5a9emduaH69v59MbpWn9Yx35lgt9b1ie5nVBnl84VuU="; }; build-system = [ setuptools ]; dependencies = [ pyyaml requests unidiff ]; optional-dependencies = { word_list = [ pyahocorasick ]; gibberish = [ gibberish-detector ]; }; nativeCheckInputs = [ mock pkgs.gitMinimal pytestCheckHook responses ] ++ lib.flatten (builtins.attrValues 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 ]; }; }