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

                        

                    
 


                                                                    

    







                                                                                                            
{ stdenv, fetchPypi, buildPythonPackage }:

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

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

  meta = with stdenv.lib; {
    description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols";
    homepage = https://code.google.com/p/dpkt/;
    license = licenses.bsd3;
    maintainers = with maintainers; [ bjornfor ];
    platforms = platforms.all;
  };
}