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-07-26 01:48:42 +01:00
|
|
|
version = "1.9.3";
|
2017-10-29 13:42:50 +00:00
|
|
|
|
2017-10-29 13:44:50 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-26 01:48:42 +01:00
|
|
|
sha256 = "18jcanxpzkd5n2gjbfpwbvvkm1hpxr59463z28py23vkbx57wmvg";
|
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;
|
|
|
|
};
|
|
|
|
}
|