depot/third_party/nixpkgs/pkgs/development/python-modules/dpkt/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

19 lines
537 B
Nix

{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "dpkt";
version = "1.9.6";
src = fetchPypi {
inherit pname version;
sha256 = "b5737010fd420d142e02ed04fa616edd1fc05e414980baef594f72287c875eef";
};
meta = with lib; {
description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols";
homepage = "https://github.com/kbandla/dpkt";
license = licenses.bsd3;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.all;
};
}