7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
13 owner = "CERT-Polska";
15 rev = "refs/tags/v${version}";
16 hash = "sha256-gxwirAqtY4R3KDHyNmDIknABO+SFuoDua9nm1UyXbxA=";
19 nativeBuildInputs = with python3.pkgs; [
23 propagatedBuildInputs = with python3.pkgs; [
30 # Project has no tests
33 pythonImportsCheck = [
38 description = "Fingerprinting tool for HTTP requests";
39 mainProgram = "hfinger";
40 homepage = "https://github.com/CERT-Polska/hfinger";
41 changelog = "https://github.com/CERT-Polska/hfinger/releases/tag/v${version}";
42 license = with licenses; [ gpl3Only ];
43 maintainers = with maintainers; [ fab ];