hfinger: init at 0.2.0

wip/yesman
Fabian Affolter 3 years ago
parent 41d8ec87b2
commit e5b6e6f289
  1. 36
      pkgs/tools/security/hfinger/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,36 @@
{ lib
, fetchFromGitHub
, python3
, wireshark-cli
}:
python3.pkgs.buildPythonApplication rec {
pname = "hfinger";
version = "0.2.0";
disabled = python3.pythonOlder "3.3";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
rev = "v${version}";
sha256 = "1vz8mf572qyng684fvb9gdwaaiybk7mjmikbymvjvy24d10raak1";
};
propagatedBuildInputs = with python3.pkgs; [
fnvhash
python_magic
] ++ [
wireshark-cli
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "hfinger" ];
meta = with lib; {
description = "Fingerprinting tool for HTTP requests";
homepage = "https://github.com/CERT-Polska/hfinger";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

@ -14749,6 +14749,8 @@ in
hdt = callPackage ../misc/hdt {};
hfinger = callPackage ../tools/security/hfinger { };
herqq = libsForQt5.callPackage ../development/libraries/herqq { };
hidapi = callPackage ../development/libraries/hidapi {

Loading…
Cancel
Save