1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPyPy
5}:
6
7buildPythonPackage rec {
8 pname = "suds-jurko";
9 version = "0.6";
10 disabled = isPyPy; # lots of failures
11
12 src = fetchPypi {
13 inherit pname version;
14 extension = "zip";
15 sha256 = "1s4radwf38kdh3jrn5acbidqlr66sx786fkwi0rgq61hn4n2bdqw";
16 };
17
18 doCheck = false;
19
20 postPatch = ''
21 # fails
22 substituteInPlace tests/test_transport_http.py \
23 --replace "test_sending_unicode_data" "noop"
24 '';
25
26 meta = with lib; {
27 description = "Lightweight SOAP client (Jurko's fork)";
28 homepage = "https://bitbucket.org/jurko/suds";
29 license = licenses.lgpl3;
30 };
31
32}