summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-02-20 16:26:47 +0100
committerJan Tojnar <jtojnar@gmail.com>2022-02-21 14:55:23 +0100
commit8570316d3d22546fb79f951863a7741f908c9f95 (patch)
tree647e427eab9411dbb0f3b2c5a1008d40ce84e907 /pkgs/development/libraries/libxml2
parent33ee72f4b130eaee659a931db32c4bdeacee66d0 (diff)
libxml2: do not disable working test
Must have been fixed for a while now.
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index 7268b70c216e7..ab9b2aea2900e 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -102,12 +102,6 @@ stdenv.mkDerivation rec {
     MACOSX_DEPLOYMENT_TARGET=10.16
   '';
 
-  # disable test that's problematic with newer pythons: see
-  # https://mail.gnome.org/archives/xml/2017-August/msg00014.html
-  preCheck = lib.optionalString (pythonSupport && !(python?pythonOlder && python.pythonOlder "3.5")) ''
-    echo "" > python/tests/tstLastError.py
-  '';
-
   preInstall = lib.optionalString pythonSupport
     ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';