2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2017-10-29 06:42:50 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-10-29 06:44:50 -07:00
|
|
|
pname = "dpkt";
|
2021-02-20 01:09:08 -08:00
|
|
|
version = "1.9.5";
|
2017-10-29 06:42:50 -07:00
|
|
|
|
2017-10-29 06:44:50 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 01:09:08 -08:00
|
|
|
sha256 = "141cab4defcb4ead83e664765ebb045f55dbe73e17d617acafd6eaf368d7c55e";
|
2017-10-29 06:42:50 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-10-29 06:42:50 -07:00
|
|
|
description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols";
|
2019-12-08 08:50:31 -08:00
|
|
|
homepage = "https://github.com/kbandla/dpkt";
|
2017-10-29 06:42:50 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|