From db08064d3b861a4fdf1938c7c3fb0f94c23be42b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 12 Aug 2024 20:05:12 +0200 Subject: [PATCH] dnstwist: 20240116 -> 20240812 Diff: https://github.com/elceef/dnstwist/compare/refs/tags/20240116...20240812 Changelog: https://github.com/elceef/dnstwist/releases/tag/20240812 --- pkgs/tools/networking/dnstwist/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/dnstwist/default.nix b/pkgs/tools/networking/dnstwist/default.nix index 9165c550eaec..51f6f5287fcc 100644 --- a/pkgs/tools/networking/dnstwist/default.nix +++ b/pkgs/tools/networking/dnstwist/default.nix @@ -5,21 +5,21 @@ python3.pkgs.buildPythonApplication rec { pname = "dnstwist"; - version = "20240116"; + version = "20240812"; pyproject = true; src = fetchFromGitHub { owner = "elceef"; repo = "dnstwist"; rev = "refs/tags/${version}"; - hash = "sha256-areFRDi728SedArhUy/rbPzhoFabNoT/WdyyN+6OQK0="; + hash = "sha256-J6MfPKj7iACsiiSUU/2gxQdwtmqw9NKnjDoSdhxKoAw="; }; - nativeBuildInputs = with python3.pkgs; [ + build-system = with python3.pkgs; [ setuptools ]; - propagatedBuildInputs = with python3.pkgs; [ + dependencies = with python3.pkgs; [ dnspython geoip ppdeep @@ -37,10 +37,10 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "Domain name permutation engine for detecting homograph phishing attacks"; - mainProgram = "dnstwist"; homepage = "https://github.com/elceef/dnstwist"; changelog = "https://github.com/elceef/dnstwist/releases/tag/${version}"; license = with licenses; [ gpl3Only ]; maintainers = with maintainers; [ fab ]; + mainProgram = "dnstwist"; }; }