summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-docx
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-31 10:01:27 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-02-10 15:05:43 +0100
commit72205a7859ad3a272f0f79d43b3cc8123724fa9e (patch)
tree2d09c086c4c7780abf271d484ad6b833194d1a89 /pkgs/development/python-modules/python-docx
parent078074a82a2527e356f79f048abf1a312ef56cdd (diff)
python311Packages.python-docx: disable failing test
Diffstat (limited to 'pkgs/development/python-modules/python-docx')
-rw-r--r--pkgs/development/python-modules/python-docx/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-docx/default.nix b/pkgs/development/python-modules/python-docx/default.nix
index 37a10bdd542c..75c8c02debd3 100644
--- a/pkgs/development/python-modules/python-docx/default.nix
+++ b/pkgs/development/python-modules/python-docx/default.nix
@@ -47,6 +47,11 @@ buildPythonPackage rec {
"docx"
];
+ disabledTests = [
+ # https://github.com/python-openxml/python-docx/issues/1302
+ "it_accepts_unicode_providing_there_is_no_encoding_declaration"
+ ];
+
meta = with lib; {
description = "Create and update Microsoft Word .docx files";
homepage = "https://python-docx.readthedocs.io/";