2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2017-10-29 13:42:50 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-29 13:44:50 +00:00
|
|
|
pname = "dpkt";
|
2021-02-20 09:09:08 +00:00
|
|
|
version = "1.9.5";
|
2017-10-29 13:42:50 +00:00
|
|
|
|
2017-10-29 13:44:50 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:08 +00:00
|
|
|
sha256 = "141cab4defcb4ead83e664765ebb045f55dbe73e17d617acafd6eaf368d7c55e";
|
2017-10-29 13:42:50 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-10-29 13:42:50 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|