python3Packages.pyshark: init at 0.4.2.11

master
Milan Pässler 2021-02-03 11:19:52 +01:00
parent df18d77f1e
commit cf650ed8ce
No known key found for this signature in database
GPG Key ID: A6DC6A7CB0B97859
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib, buildPythonPackage, fetchFromGitHub, py, lxml, pytestCheckHook, wireshark-cli }:
buildPythonPackage rec {
pname = "pyshark";
version = "0.4.2.11";
src = fetchFromGitHub {
owner = "KimiNewt";
repo = pname;
rev = "v${version}";
sha256 = "07dkhkf85cplcj1h3k8mmqzsn4zdkxzr0zg3gvf8yc8p5g5azx9q";
};
propagatedBuildInputs = [
py
lxml
];
preConfigure = ''
cd src
'';
preCheck = ''
cd ..
'';
checkInputs = [
pytestCheckHook
wireshark-cli
];
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; [ petabyteboy ];
};
}

View File

@ -4890,6 +4890,8 @@ in {
pysbd = callPackage ../development/python-modules/pysbd { };
pyshark = callPackage ../development/python-modules/pyshark { };
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
python-csxcad = callPackage ../development/python-modules/python-csxcad { };