python3Packages.scapy: 2.4.4 -> 2.4.5

This commit is contained in:
Michael Weiss 2021-04-20 14:06:19 +02:00
parent 78024876a6
commit 0677f980c7
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -13,7 +13,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "scapy"; pname = "scapy";
version = "2.4.4"; version = "2.4.5";
disabled = isPyPy; disabled = isPyPy;
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "secdev"; owner = "secdev";
repo = "scapy"; repo = "scapy";
rev = "v${version}"; rev = "v${version}";
sha256 = "1wpx7gps3g8q5ykbfcd67mxwcs416zg37b53fwfzzlc1m58vhk3p"; sha256 = "0nxci1v32h5517gl9ic6zjq8gc8drwr0n5pz04c91yl97xznnw94";
}; };
postPatch = '' postPatch = ''
@ -44,6 +44,7 @@ buildPythonPackage rec {
patchShebangs . patchShebangs .
.config/ci/test.sh .config/ci/test.sh
''; '';
pythonImportsCheck = [ "scapy" ];
meta = with lib; { meta = with lib; {
description = "A Python-based network packet manipulation program and library"; description = "A Python-based network packet manipulation program and library";
@ -70,7 +71,7 @@ buildPythonPackage rec {
''; '';
homepage = "https://scapy.net/"; homepage = "https://scapy.net/";
changelog = "https://github.com/secdev/scapy/releases/tag/v${version}"; changelog = "https://github.com/secdev/scapy/releases/tag/v${version}";
license = licenses.gpl2; license = licenses.gpl2Only;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ primeos bjornfor ]; maintainers = with maintainers; [ primeos bjornfor ];
}; };