mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #172388 from fabaff/pcapy-ng
python310Packages.pcapy-ng: init at 1.0.9
This commit is contained in:
commit
9281793311
59
pkgs/development/python-modules/pcapy-ng/default.nix
Normal file
59
pkgs/development/python-modules/pcapy-ng/default.nix
Normal file
@ -0,0 +1,59 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, cython
|
||||
, fetchFromGitHub
|
||||
, libpcap
|
||||
, pkgconfig
|
||||
, pytestCheckHook
|
||||
, python
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pcapy-ng";
|
||||
version = "1.0.9";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stamparm";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-6LA2n7Kv0MiZcqUJpi0lDN4Q+GcOttYw7hJwVqK/DU0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cython
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libpcap
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
cd tests
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pcapy"
|
||||
];
|
||||
|
||||
doCheck = pythonOlder "3.10";
|
||||
|
||||
pytestFlagsArray = [
|
||||
"pcapytests.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to interface with the libpcap packet capture library";
|
||||
homepage = "https://github.com/stamparm/pcapy-ng/";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -6181,6 +6181,8 @@ in {
|
||||
|
||||
pc-ble-driver-py = toPythonModule (callPackage ../development/python-modules/pc-ble-driver-py { });
|
||||
|
||||
pcapy-ng = callPackage ../development/python-modules/pcapy-ng { };
|
||||
|
||||
pcodedmp = callPackage ../development/python-modules/pcodedmp { };
|
||||
|
||||
pcpp = callPackage ../development/python-modules/pcpp { };
|
||||
|
Loading…
Reference in New Issue
Block a user