python3Packages.pygelf: update disabled tests

Works around:

==================================== ERRORS ====================================
________________ ERROR collecting tests/test_dynamic_fields.py _________________
tests/test_dynamic_fields.py:23: in <module>
GelfTlsHandler(host='localhost', port=12204, validate=True, ca_certs='tests/config/cert.pem', include_extra_fields=True),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
pygelf/handlers.py:126: in __init__
self.ctx.load_verify_locations(cafile=ca_certs)
E FileNotFoundError: [Errno 2] No such file or directory
_________________ ERROR collecting tests/test_static_fields.py _________________
tests/test_static_fields.py:20: in <module>
GelfTlsHandler(host='localhost', port=12204, validate=True, ca_certs='tests/config/cert.pem', **STATIC_FIELDS),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
pygelf/handlers.py:126: in __init__
self.ctx.load_verify_locations(cafile=ca_certs)
E FileNotFoundError: [Errno 2] No such file or directory
=========================== short test summary info ============================
ERROR tests/test_dynamic_fields.py - FileNotFoundError: [Errno 2] No such file or directory
ERROR tests/test_static_fields.py - FileNotFoundError: [Errno 2] No such file or directory
!!!!!!!!!!!!!!!!!!! Interrupted: 2 errors during collection !!!!!!!!!!!!!!!!!!!!
============================== 2 errors in 0.24s ===============================

Re #431074

Changed files
+8 -9
pkgs
development
python-modules
pygelf
+8 -9
pkgs/development/python-modules/pygelf/default.nix
···
requests
];
-
disabledTests = [
-
# ConnectionRefusedError: [Errno 111] Connection refused
-
"test_static_fields"
-
"test_dynamic_fields"
-
];
-
disabledTestPaths = [
-
# These tests requires files that are stripped off by Pypi packaging
-
"tests/test_queuehandler_support.py"
-
"tests/test_debug_mode.py"
"tests/test_common_fields.py"
];
meta = {
···
requests
];
disabledTestPaths = [
+
# The fixtures in these files fail to evaluate due to missing files `tests/config/cert.pem` and
+
# `tests/config/key.pem`. It suffices to replace them with any self-signed certificate e.g. from
+
# `nixos/tests/common/acme/server/snakeoil-certs.nix`, but after resolving that, all of the
+
# tests fail anyway with “ConnectionRefusedError: [Errno 111] Connection refused”.
"tests/test_common_fields.py"
+
"tests/test_debug_mode.py"
+
"tests/test_dynamic_fields.py"
+
"tests/test_queuehandler_support.py"
+
"tests/test_static_fields.py"
];
meta = {