about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/detect-secrets/default.nix
blob: f0dddf66ff4075a0039af6eecce7c01d93259b16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{ lib
, buildPythonApplication
, configparser
, enum34
, fetchFromGitHub
, functools32
, future
, isPy27
, mock
, pyahocorasick
, pytestCheckHook
, pyyaml
, requests
, responses
, unidiff
}:

buildPythonApplication rec {
  pname = "detect-secrets";
  version = "0.14.3";
  disabled = isPy27;

  # PyPI tarball doesn't ship tests
  src = fetchFromGitHub {
    owner = "Yelp";
    repo = pname;
    rev = "v${version}";
    sha256 = "0c4hxih9ljmv0d3izq5idyspk5zci26gdb6lv9klwcshwrfkvxj0";
  };

  propagatedBuildInputs = [
    pyyaml
    requests
  ];

  checkInputs = [
    mock
    pyahocorasick
    pytestCheckHook
    responses
    unidiff
  ];

  disabledTests = [
    "TestMain"
    "TestPreCommitHook"
    "TestInitializeBaseline"
  ];

  pythonImportsCheck = [ "detect_secrets" ];

  meta = with lib; {
    description = "An enterprise friendly way of detecting and preventing secrets in code";
    homepage = "https://github.com/Yelp/detect-secrets";
    license = licenses.asl20;
    maintainers = [ maintainers.marsam ];
  };
}