Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pcapy-ng / default.nix
blobda490bd304ebce8783eb80f3708c87c612194671
1 { lib
2 , buildPythonPackage
3 , cython
4 , fetchFromGitHub
5 , libpcap
6 , pkgconfig
7 , pytestCheckHook
8 , python
9 , pythonOlder
12 buildPythonPackage rec {
13   pname = "pcapy-ng";
14   version = "1.0.9";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "stamparm";
21     repo = pname;
22     rev = version;
23     hash = "sha256-6LA2n7Kv0MiZcqUJpi0lDN4Q+GcOttYw7hJwVqK/DU0=";
24   };
26   nativeBuildInputs = [
27     cython
28     pkgconfig
29   ];
31   buildInputs = [
32     libpcap
33   ];
35   nativeCheckInputs = [
36     pytestCheckHook
37   ];
39   preCheck = ''
40     cd tests
41   '';
43   pythonImportsCheck = [
44     "pcapy"
45   ];
47   doCheck = pythonOlder "3.10";
49   pytestFlagsArray = [
50     "pcapytests.py"
51   ];
53   meta = with lib; {
54     description = "Module to interface with the libpcap packet capture library";
55     homepage = "https://github.com/stamparm/pcapy-ng/";
56     license = licenses.bsd2;
57     maintainers = with maintainers; [ fab ];
58   };