28 buildPythonPackage rec {
33 inherit pname version;
34 sha256 = "0e98669cfeb60756231ae185498f9ae21b30b2681786b8de58ed34c3b93e41dd";
39 url = "https://github.com/mvantellingen/python-zeep/pull/1006/commits/ba7edd6bf2b31023b31e8f17c161e1d6d5af3d29.patch";
40 sha256 = "1j0jd5hmh457im9sbawaqf6pnfy36fhr9wqdim8wk5da9ixr0ajs";
44 propagatedBuildInputs = [
56 # optional requirements
58 ] ++ lib.optional isPy3k aiohttp;
67 ] ++ lib.optional isPy3k aioresponses;
71 # fix compatibility with pytest 4
72 substituteInPlace tests/conftest.py \
73 --replace 'request.node.get_marker("requests")' 'request.node.get_closest_marker("requests")'
74 # ignored tests requires xmlsec python module
75 HOME=$(mktemp -d) pytest tests --ignore tests/test_wsse_signature.py
80 homepage = "http://docs.python-zeep.org";
81 license = licenses.mit;
82 description = "A modern/fast Python SOAP client based on lxml / requests";
83 maintainers = with maintainers; [ rvl ];