1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "pure-pcapy3";
9 version = "1.0.1";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.7";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-uZ5F8W1K1BDrXrvH1dOeNT1+2n6G8K1S5NxcRaez6pI=";
17 };
18
19 pythonImportsCheck = [
20 "pure_pcapy"
21 ];
22
23 meta = with lib; {
24 description = "Reimplementation of pcapy";
25 homepage = "https://github.com/rcloran/pure-pcapy-3";
26 license = licenses.bsd2;
27 maintainers = with maintainers; [ ];
28 };
29}