27 buildPythonPackage rec {
30 format = "setuptools";
32 disabled = pythonOlder "3.6";
34 src = fetchFromGitHub {
35 owner = "mvantellingen";
37 rev = "refs/tags/${version}";
38 hash = "sha256-8f6kS231gbaZ8qyE8BKMcbnZsm8o2+iBoTlQrs5X+jY=";
41 propagatedBuildInputs = [
53 passthru.optional-dependencies = {
62 pythonImportsCheck = [
77 ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
84 changelog = "https://github.com/mvantellingen/python-zeep/releases/tag/${version}";
85 description = "Python SOAP client";
86 homepage = "http://docs.python-zeep.org";
87 license = licenses.mit;
88 maintainers = with maintainers; [ rvl ];