2017-10-29 13:44:50 +00:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage }:
|
2017-10-29 13:42:50 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-29 13:44:50 +00:00
|
|
|
pname = "dpkt";
|
2020-09-30 07:38:47 +01:00
|
|
|
version = "1.9.4";
|
2017-10-29 13:42:50 +00:00
|
|
|
|
2017-10-29 13:44:50 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-09-30 07:38:47 +01:00
|
|
|
sha256 = "f4e579cbaf6e2285ebf3a9e84019459b4367636bac079ba169527e582fca48b4";
|
2017-10-29 13:42:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://github.com/kbandla/dpkt";
|
2017-10-29 13:42:50 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|