python3Packages.paho-mqtt: disable failing tests

Upstream let key material used in tests exprie.
This commit is contained in:
Martin Weinelt
2026-07-12 00:38:00 +02:00
parent b825552128
commit 7b607fe865

View File

@@ -1,6 +1,5 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
hatchling,
@@ -63,6 +62,15 @@ buildPythonPackage rec {
"test_01_zero_length_clientid"
];
disabledTestPaths = [
# Expired key material
# https://github.com/eclipse-paho/paho.mqtt.python/pull/854
"tests/lib/test_08_ssl_connect_alpn.py"
"tests/lib/test_08_ssl_connect_cert_auth.py"
"tests/lib/test_08_ssl_connect_cert_auth_pw.py"
"tests/lib/test_08_ssl_connect_no_auth.py"
];
meta = {
changelog = "https://github.com/eclipse/paho.mqtt.python/blob/${src.rev}/ChangeLog.txt";
description = "MQTT version 5.0/3.1.1 client class";