1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
79 lines
2.0 KiB
Nix
79 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
packaging,
|
|
pytestCheckHook,
|
|
scapy,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "boiboite-opener-framework";
|
|
version = "1.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Orange-Cyberdefense";
|
|
repo = "bof";
|
|
tag = version;
|
|
hash = "sha256-atKqHRX24UjF/9Dy0aYXAN+80nBJKCd07FmaR5Vl1q4=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "scapy" ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
packaging
|
|
scapy
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
# Race condition, https://github.com/secdev/scapy/pull/4558
|
|
# pythonImportsCheck = [ "bof" ];
|
|
|
|
disabledTests = [
|
|
# Tests are using netcat and cat to do UDP connections
|
|
"test_0101_knxnet_instantiate"
|
|
"test_0101_modbusnet_instantiate"
|
|
"test_0102_knxnet_connect"
|
|
"test_0102_modbusnet_connect"
|
|
"test_0201_knxnet_send_knxpacket"
|
|
"test_0201_modbus_send_modbuspacket"
|
|
"test_0201_udp_send_str_bytes"
|
|
"test_0202_knxnet_send_knxpacket"
|
|
"test_0202_modbus_send_modbuspacket"
|
|
"test_0202_udp_send_receive"
|
|
"test_0203_knxnet_send_raw"
|
|
"test_0203_modbus_send_raw"
|
|
"test_0203_send_receive_timeout"
|
|
"test_0204_knxnet_receive"
|
|
"test_0204_modbus_receive"
|
|
"test_0204_multicast_error_handling"
|
|
"test_0205_broadcast_error_handling"
|
|
"test_0301_pndcp_device_raise"
|
|
"test_0301_tcp_instantiate"
|
|
"test_0302_tcp_connect"
|
|
"test_0303_tcp_connect_bad_addr"
|
|
"test_0304_tcp_connect_bad_port"
|
|
"test_0401_tcp_send_str_bytes"
|
|
"test_0402_tcp_send_receive"
|
|
"test_0802_search_valid"
|
|
];
|
|
|
|
meta = {
|
|
description = "Testing framework for industrial protocols implementations and devices";
|
|
homepage = "https://github.com/Orange-Cyberdefense/bof";
|
|
changelog = "https://github.com/Orange-Cyberdefense/bof/releases/tag/${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|