commit
9ca28714c8
36
pkgs/tools/security/hfinger/default.nix
Normal file
36
pkgs/tools/security/hfinger/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -14758,6 +14758,8 @@ in
|
||||
|
||||
hdt = callPackage ../misc/hdt {};
|
||||
|
||||
hfinger = callPackage ../tools/security/hfinger { };
|
||||
|
||||
herqq = libsForQt5.callPackage ../development/libraries/herqq { };
|
||||
|
||||
hidapi = callPackage ../development/libraries/hidapi {
|
||||
|
Loading…
Reference in New Issue
Block a user