depot/pkgs/tools/security/deepsecrets/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

51 lines
1.1 KiB
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "deepsecrets";
version = "1.0.6";
pyproject = true;
src = fetchFromGitHub {
owner = "avito-tech";
repo = "deepsecrets";
rev = "refs/tags/v${version}";
hash = "sha256-VfIsPgStHcIYGbfrOs1mvgoq0ZoVSZwILFVBeMt/5Jc=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-warn 'pyyaml = "^5.4.1"' 'pyyaml = "*"' \
--replace-warn 'regex = "^2023.3.23"' 'regex = "*"' \
--replace-warn 'mmh3 = "^3.0.0"' 'mmh3 = "*"'
'';
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
dotwiz
mmh3
ordered-set
pydantic_1
pygments
pyyaml
regex
];
pythonImportsCheck = [
"deepsecrets"
];
meta = with lib; {
description = "Secrets scanner that understands code";
mainProgram = "deepsecrets";
homepage = "https://github.com/avito-tech/deepsecrets";
changelog = "https://github.com/avito-tech/deepsecrets/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}