Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 19 lines 535 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "dpkt"; 5 version = "1.9.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "18jcanxpzkd5n2gjbfpwbvvkm1hpxr59463z28py23vkbx57wmvg"; 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}