ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / suds-jurko / default.nix
blobf2776265b067fbf13a38e49ee61bdbc83b4c00ba
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 }:
7 buildPythonPackage rec {
8   pname = "suds-jurko";
9   version = "0.6";
10   disabled = isPyPy;  # lots of failures
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "1s4radwf38kdh3jrn5acbidqlr66sx786fkwi0rgq61hn4n2bdqw";
16   };
18   doCheck = false;
20   postPatch = ''
21     # fails
22     substituteInPlace tests/test_transport_http.py \
23       --replace "test_sending_unicode_data" "noop"
24   '';
26   meta = with lib; {
27     description = "Lightweight SOAP client (Jurko's fork)";
28     homepage = "https://bitbucket.org/jurko/suds";
29     license = licenses.lgpl3;
30     broken = true; # Uses use2to3, which has been removed in setuptools>=58
31   };