Merge pull request #111729 from petabyteboy/feature/pyshark
python3Packages.pyshark: init at 0.4.2.11
This commit is contained in:
commit
d79612672e
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4904,6 +4904,8 @@ in {
|
||||||
|
|
||||||
pysbd = callPackage ../development/python-modules/pysbd { };
|
pysbd = callPackage ../development/python-modules/pysbd { };
|
||||||
|
|
||||||
|
pyshark = callPackage ../development/python-modules/pyshark { };
|
||||||
|
|
||||||
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
|
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
|
||||||
|
|
||||||
python-csxcad = callPackage ../development/python-modules/python-csxcad { };
|
python-csxcad = callPackage ../development/python-modules/python-csxcad { };
|
||||||
|
|
Loading…
Reference in New Issue