From a6b28e33549a3803d856ac258f6500f98e280caa Mon Sep 17 00:00:00 2001 From: Patrick Date: Sun, 18 May 2025 12:48:08 +0200 Subject: [PATCH] ghunt: 2.1.0 -> 2.3.3 --- pkgs/by-name/gh/ghunt/package.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/gh/ghunt/package.nix b/pkgs/by-name/gh/ghunt/package.nix index 0f4c42ff05dd..975774ff09fa 100644 --- a/pkgs/by-name/gh/ghunt/package.nix +++ b/pkgs/by-name/gh/ghunt/package.nix @@ -6,20 +6,22 @@ python3.pkgs.buildPythonApplication rec { pname = "ghunt"; - version = "2.1.0"; + version = "2.3.3"; pyproject = true; src = fetchFromGitHub { owner = "mxrch"; repo = "ghunt"; - tag = "v${version}"; - hash = "sha256-UeHVATTyAH3Xdm/NVSUhiicM+tZ4UnLeJsy1jSLK3v8="; + # The newer releases aren't git-tagged to we just take the + # commit with the version bump + rev = "5782248bfd92a24875e112ed0a83e6986d4c70d0"; + hash = "sha256-SQk/hy4r9LIffsu3kxLTv5LCcEvcZkP2jhmPA6Fzo8U="; }; pythonRelaxDeps = true; nativeBuildInputs = with python3.pkgs; [ - setuptools + poetry-core ]; propagatedBuildInputs = @@ -29,6 +31,7 @@ python3.pkgs.buildPythonApplication rec { autoslot beautifulsoup4 beautifultable + dnspython geopy httpx humanize @@ -39,7 +42,7 @@ python3.pkgs.buildPythonApplication rec { protobuf python-dateutil rich - trio + rich-argparse packaging ] ++ httpx.optional-dependencies.http2;