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