python3Packages.boiboite-opener-framework: drop (#502659)
This commit is contained in:
@@ -1,78 +0,0 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
||||
@@ -112,6 +112,7 @@ mapAliases {
|
||||
bjoern = throw "'bjoern' has been removed, as the upstream repository was unmaintained and it was using libraries with severe security issues."; # Added 2025-09-01
|
||||
bkcharts = throw "'bkcharts' has been removed as the upstream repository was archived in 2018"; # added 2025-08-26
|
||||
BlinkStick = throw "'BlinkStick' has been renamed to/replaced by 'blinkstick'"; # Converted to throw 2025-10-29
|
||||
boiboite-opener-framework = throw "'boiboite-opener-framework' has been removed as it was unmaintained upstream"; # Added 2026-03-23
|
||||
bsblan = throw "'bsblan' has been renamed to/replaced by 'python-bsblan'"; # Converted to throw 2025-10-29
|
||||
bsddb3 = throw "'bsddb3' has been removed because it was deprecated in favor of 'berkeleydb'"; # added 2026-01-20
|
||||
bt_proximity = throw "'bt_proximity' has been renamed to/replaced by 'bt-proximity'"; # Converted to throw 2025-10-29
|
||||
|
||||
@@ -2194,8 +2194,6 @@ self: super: with self; {
|
||||
|
||||
boa-api = callPackage ../development/python-modules/boa-api { };
|
||||
|
||||
boiboite-opener-framework = callPackage ../development/python-modules/boiboite-opener-framework { };
|
||||
|
||||
boilerpy3 = callPackage ../development/python-modules/boilerpy3 { };
|
||||
|
||||
bokeh = callPackage ../development/python-modules/bokeh { };
|
||||
|
||||
Reference in New Issue
Block a user