dnsrecon: 1.6.0 -> 1.6.1 (#532717)

This commit is contained in:
Fabian Affolter
2026-06-18 14:14:07 +00:00
committed by GitHub
+8 -5
View File
@@ -6,16 +6,21 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "dnsrecon";
version = "1.6.0";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "darkoperator";
repo = "dnsrecon";
tag = finalAttrs.version;
hash = "sha256-3o3UOEvaUVtfqZNAXzos7mtsAeUxJXtwNDw1MCKZ0YM=";
hash = "sha256-l10U8lRTSxT0ciZxLy+ZZBWhssUP9kSvVnPinzJ1SdQ=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools>=82.0.1" "setuptools"
'';
pythonRelaxDeps = true;
build-system = with python3.pkgs; [ setuptools ];
@@ -45,9 +50,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
homepage = "https://github.com/darkoperator/dnsrecon";
changelog = "https://github.com/darkoperator/dnsrecon/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [
fab
];
maintainers = with lib.maintainers; [ fab ];
mainProgram = "dnsrecon";
};
})