at 22.05-pre 622 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "dpkt"; 8 version = "1.9.7.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "80f977667ebbad2b5c4f7b7f45ee8bea6622fb71723f68a9a8fe6274520c853b"; 13 }; 14 15 # Project has no tests 16 doCheck = false; 17 18 pythonImportsCheck = [ "dpkt" ]; 19 20 meta = with lib; { 21 description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols"; 22 homepage = "https://github.com/kbandla/dpkt"; 23 license = licenses.bsd3; 24 maintainers = with maintainers; [ bjornfor ]; 25 platforms = platforms.all; 26 }; 27}