summary refs log blame commit diff
path: root/pkgs/development/python-modules/dpkt/default.nix
blob: 567cd85fa9437baaddd582aef20db54fff3bd28b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                          

                        
                 
                    
 

                          
                                                                    

    

                                                                                                            
                                                 




                                                 
{ stdenv, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "dpkt";
  version = "1.9.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0m0ym219zsqfjl6jwivw5as3igjbmhpcn4dvabc5nkd0bk6jxaaj";
  };

  meta = with stdenv.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;
  };
}