python3Packages.pyshark: 0.4.2.11 -> 0.4.3

This commit is contained in:
Fabian Affolter 2021-03-17 00:33:42 +01:00 committed by Jonathan Ringer
parent b1632106a4
commit 667dea17c9

View File

@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "pyshark";
version = "0.4.2.11";
version = "0.4.3";
src = fetchFromGitHub {
owner = "KimiNewt";
repo = pname;
rev = "v${version}";
sha256 = "07dkhkf85cplcj1h3k8mmqzsn4zdkxzr0zg3gvf8yc8p5g5azx9q";
sha256 = "sha256-cveiFkkSplfQPgUEVWyV40KKHCtKJZsfvdV8JmEUmE4=";
};
propagatedBuildInputs = [
@ -29,6 +29,8 @@ buildPythonPackage rec {
wireshark-cli
];
pythonImportsCheck = [ "pyshark" ];
meta = with lib; {
description = "Python wrapper for tshark, allowing python packet parsing using wireshark dissectors";
homepage = "https://github.com/KimiNewt/pyshark/";