about summary refs log tree commit diff
path: root/pkgs/development/python-modules/suds-jurko
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-21 12:44:45 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-21 13:09:05 +0100
commit56d9affaeabe17dff46b8d6cf6f336c31d5ed046 (patch)
tree688aecef44af9a3a3dd138c045f4acf5c744c5e7 /pkgs/development/python-modules/suds-jurko
parent48d1219a92e93954bbae6cd7402a8fe1c9b3ea9f (diff)
downloadnixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.tar
nixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.tar.gz
nixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.tar.bz2
nixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.tar.lz
nixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.tar.xz
nixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.tar.zst
nixlib-56d9affaeabe17dff46b8d6cf6f336c31d5ed046.zip
Revert "python-suds-jurko: disable the test suite"
This reverts commit c103b5b236019323ab0df03b7e5a45f86dc2542e.
Diffstat (limited to 'pkgs/development/python-modules/suds-jurko')
-rw-r--r--pkgs/development/python-modules/suds-jurko/default.nix6
1 files changed, 5 insertions, 1 deletions
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)";