From 56d9affaeabe17dff46b8d6cf6f336c31d5ed046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 21 Mar 2019 12:44:45 +0100 Subject: [PATCH] Revert "python-suds-jurko: disable the test suite" This reverts commit c103b5b236019323ab0df03b7e5a45f86dc2542e. --- pkgs/development/python-modules/suds-jurko/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/suds-jurko/default.nix b/pkgs/development/python-modules/suds-jurko/default.nix index 5459a39fc1f1..5c04c5bd5d35 100644 --- a/pkgs/development/python-modules/suds-jurko/default.nix +++ b/pkgs/development/python-modules/suds-jurko/default.nix @@ -18,7 +18,11 @@ buildPythonPackage rec { buildInputs = [ pytest ]; - doCheck = false; # v0.6 is broken with recent pytest 4.x + preBuild = '' + # fails + substituteInPlace tests/test_transport_http.py \ + --replace "test_sending_unicode_data" "noop" + ''; meta = with stdenv.lib; { description = "Lightweight SOAP client (Jurko's fork)";