nixpkgs/pkgs/development/tools/detect-secrets/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2018-12-25 23:01:00 +00:00
{ lib, buildPythonApplication, fetchFromGitHub, isPy27, pyyaml, unidiff, configparser, enum34, future, functools32, mock, pytest }:
buildPythonApplication rec {
pname = "detect-secrets";
version = "0.11.4";
2018-12-25 23:01:00 +00:00
# PyPI tarball doesn't ship tests
src = fetchFromGitHub {
owner = "Yelp";
repo = "detect-secrets";
rev = "v${version}";
sha256 = "1ydigridkjirrfhyfr8barw0yrd4hw6w0k9g7mbd0gdqng6gpmgc";
2018-12-25 23:01:00 +00:00
};
propagatedBuildInputs = [ pyyaml ]
2018-12-25 23:01:00 +00:00
++ lib.optionals isPy27 [ configparser enum34 future functools32 ];
checkInputs = [ mock pytest unidiff ];
2018-12-25 23:01:00 +00:00
# deselect tests which require git setup
checkPhase = ''
PYTHONPATH=$PWD:$PYTHONPATH pytest \
--deselect tests/main_test.py::TestMain \
--deselect tests/pre_commit_hook_test.py::TestPreCommitHook \
--deselect tests/core/baseline_test.py::TestInitializeBaseline
'';
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 ];
};
}