From 17ab0e70bb01dcdb445fdec7feaf26d4e3e1b06b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Nov 2024 11:45:59 +0100 Subject: [PATCH] baddns: 1.1.869 -> 1.3.3 Diff: https://github.com/blacklanternsecurity/baddns/compare/refs/tags/v1.1.869...v1.3.3 Changelog: https://github.com/blacklanternsecurity/baddns/releases/tag/v1.3.3 --- pkgs/by-name/ba/baddns/package.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ba/baddns/package.nix b/pkgs/by-name/ba/baddns/package.nix index 77003ba502e24..a2a03370fe81c 100644 --- a/pkgs/by-name/ba/baddns/package.nix +++ b/pkgs/by-name/ba/baddns/package.nix @@ -7,14 +7,14 @@ python3.pkgs.buildPythonApplication rec { pname = "baddns"; - version = "1.1.869"; + version = "1.3.3"; pyproject = true; src = fetchFromGitHub { owner = "blacklanternsecurity"; repo = "baddns"; rev = "refs/tags/v${version}"; - hash = "sha256-BoRR7duvkXjI8vVP59IOACuIV7NmQe1loMEUgPfsdNw="; + hash = "sha256-pF7HYl1l+TSahJHuyVBZtYeET6wPCiSi+Yi7Rg46T44="; }; pythonRelaxDeps = true; @@ -48,7 +48,13 @@ python3.pkgs.buildPythonApplication rec { disabledTests = [ # Tests require network access + "test_cli_cname_http" + "test_cli_direct" "test_cli_validation_customnameservers_valid" + "test_cname_http_bigcartel_match" + "test_cname_whois_unregistered_baddata" + "test_cname_whois_unregistered_match" + "test_cname_whois_unregistered_missingdata" "test_modules_customnameservers" "test_references_cname_css" "test_references_cname_js" @@ -57,6 +63,7 @@ python3.pkgs.buildPythonApplication rec { meta = { description = "Tool to check subdomains for subdomain takeovers and other DNS issues"; homepage = "https://github.com/blacklanternsecurity/baddns/"; + changelog = "https://github.com/blacklanternsecurity/baddns/releases/tag/v${version}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ fab ]; mainProgram = "baddns";