Merge pull request #293015 from fabaff/hfinger-bump

hfinger: refactor
This commit is contained in:
Fabian Affolter 2024-03-03 20:56:27 +01:00 committed by GitHub
commit 0ec0cf57b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -7,15 +7,19 @@
python3.pkgs.buildPythonApplication rec {
pname = "hfinger";
version = "0.2.2";
disabled = python3.pythonOlder "3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
repo = "hfinger";
rev = "refs/tags/v${version}";
sha256 = "sha256-gxwirAqtY4R3KDHyNmDIknABO+SFuoDua9nm1UyXbxA=";
hash = "sha256-gxwirAqtY4R3KDHyNmDIknABO+SFuoDua9nm1UyXbxA=";
};
nativeBuildInputs = with python3.pkgs; [
setuptools
];
propagatedBuildInputs = with python3.pkgs; [
fnvhash
python-magic
@ -25,11 +29,15 @@ python3.pkgs.buildPythonApplication rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "hfinger" ];
pythonImportsCheck = [
"hfinger"
];
meta = with lib; {
description = "Fingerprinting tool for HTTP requests";
homepage = "https://github.com/CERT-Polska/hfinger";
changelog = "https://github.com/CERT-Polska/hfinger/releases/tag/v${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};