59 lines
1,005 B
Nix
59 lines
1,005 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, appdirs
|
|
, lxml
|
|
, packaging
|
|
, py
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, wireshark-cli
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyshark";
|
|
version = "0.5.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KimiNewt";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-byll2GWY2841AAf8Xh+KfaCOtMGVKabTsLCe3gCdZ1o=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
py
|
|
lxml
|
|
packaging
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
wireshark-cli
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pyshark"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"../tests/"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for tshark, allowing Python packet parsing using Wireshark dissectors";
|
|
homepage = "https://github.com/KimiNewt/pyshark/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|