summary refs log tree commit diff
path: root/pkgs/development/python-modules/pure-pcapy3/default.nix
blob: 9679cc593df0d70894b506ffc8ed28ea104ea24a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "pure-pcapy3";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "14panfklap6wwi9avw46gvd7wg9mkv9xbixvbvmi1m2adpqlb7mr";
  };

  meta = with lib; {
    description = "Pure Python reimplementation of pcapy. This package is API compatible and a drop-in replacement.";
    homepage = "https://bitbucket.org/viraptor/pure-pcapy";
    license = licenses.bsd2;
    maintainers = with maintainers; [ etu ];
  };
}