67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{ lib
|
|
, astroid
|
|
, beautifulsoup4
|
|
, buildPythonPackage
|
|
, crossplane
|
|
, fetchFromGitHub
|
|
, jellyfish
|
|
, jproperties
|
|
, luhn
|
|
, lxml
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "whispers";
|
|
version = "2.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adeptex";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-9vXku8BWJtlf+lmAcQ8a7qTisRNc+xVw0T0Eunc4lt4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
astroid
|
|
beautifulsoup4
|
|
crossplane
|
|
jellyfish
|
|
jproperties
|
|
luhn
|
|
lxml
|
|
pyyaml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace '"pytest-runner"' ""
|
|
'';
|
|
|
|
preCheck = ''
|
|
# Some tests need the binary available in PATH
|
|
export PATH=$out/bin:$PATH
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"whispers"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to identify hardcoded secrets in static structured text";
|
|
homepage = "https://github.com/Skyscanner/whispers";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|