mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
4552414df1
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
36 lines
741 B
Nix
36 lines
741 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "microsoft-security-utilities-secret-masker";
|
|
version = "1.0.0b3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "microsoft_security_utilities_secret_masker";
|
|
inherit version;
|
|
hash = "sha256-0EVIIwxno70stGCyjnH+bKwWj0jwbXapadnKR732c0M=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"microsoft_security_utilities_secret_masker"
|
|
];
|
|
|
|
meta = {
|
|
description = "A tool for detecting and masking secrets";
|
|
homepage = "https://pypi.org/project/microsoft-security-utilities-secret-masker/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|