about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioxmpp
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-09-19 05:50:15 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-09-27 15:34:44 +0200
commit0ea54c2bf7756daadcc51926c1b273861fd883cc (patch)
treea115e4939fe881cf4c05f249f22f8e315d37359f /pkgs/development/python-modules/aioxmpp
parente72365c9f6d8a0f0ef43197788b31455d5f13da1 (diff)
python311Packages.aioxmpp: disable failing test
Diffstat (limited to 'pkgs/development/python-modules/aioxmpp')
-rw-r--r--pkgs/development/python-modules/aioxmpp/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aioxmpp/default.nix b/pkgs/development/python-modules/aioxmpp/default.nix
index edc9b8def3da9..6c7660f9f3e14 100644
--- a/pkgs/development/python-modules/aioxmpp/default.nix
+++ b/pkgs/development/python-modules/aioxmpp/default.nix
@@ -60,6 +60,11 @@ buildPythonPackage rec {
     "benchmarks"
   ];
 
+  disabledTests = [
+    # AttributeError: 'zoneinfo.ZoneInfo' object has no attribute 'normalize'
+    "test_convert_field_datetime_default_locale"
+  ];
+
   meta = {
     changelog = "https://github.com/horazont/aioxmpp/blob/${src.rev}/docs/api/changelog.rst";
     description = "Pure-python XMPP library for asyncio";