Files
nixpkgs/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
717 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "microsoft-security-utilities-secret-masker";
version = "1.0.0b4";
pyproject = true;
src = fetchPypi {
pname = "microsoft_security_utilities_secret_masker";
inherit version;
hash = "sha256-owvTYawYyLUvaEQHa8JkZTNZSeqcegBNlfUZbsb97z4=";
};
build-system = [
setuptools
wheel
];
pythonImportsCheck = [
"microsoft_security_utilities_secret_masker"
];
meta = {
description = "Tool for detecting and masking secrets";
homepage = "https://pypi.org/project/microsoft-security-utilities-secret-masker/";
license = lib.licenses.mit;
maintainers = [ ];
};
}