ghunt: 2.1.0 -> 2.3.3

This commit is contained in:
Patrick 2025-05-18 12:48:08 +02:00
parent 26e4636d7d
commit a6b28e3354
No known key found for this signature in database
GPG key ID: 451F95EFB8BECD0F

View file

@ -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;