Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 19 lines 535 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "dpkt"; 5 version = "1.9.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0m0ym219zsqfjl6jwivw5as3igjbmhpcn4dvabc5nkd0bk6jxaaj"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols"; 14 homepage = "https://github.com/kbandla/dpkt"; 15 license = licenses.bsd3; 16 maintainers = with maintainers; [ bjornfor ]; 17 platforms = platforms.all; 18 }; 19}