summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pysimplesoap/default.nix
blob: 80eb5b62070d576d7e6902832ad8513e8de38b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
  lib,
  fetchDebianPatch,
  fetchPypi,
  buildPythonPackage,
  m2crypto,
  nix-update-script,
}:

buildPythonPackage rec {
  pname = "pysimplesoap";
  version = "1.16.2";
  format = "setuptools";

  passthru.updateScript = nix-update-script { };

  src = fetchPypi {
    pname = "PySimpleSOAP";
    inherit version;
    hash = "sha256-sbv00NCt/5tlIZfWGqG3ZzGtYYhJ4n0o/lyyUJFtZ+E=";
  };

  propagatedBuildInputs = [ m2crypto ];

  # Patches necessary for Python 3 compatibility plus bugfixes
  patches =
    map
      (
        args:
        fetchDebianPatch (
          {
            inherit pname version;
            debianRevision = "5";
          }
          // args
        )
      )
      [
        # Merged upstream: f5f96210e1483f81cb5c582a6619e3ec4b473027
        {
          patch = "Add-quotes-to-SOAPAction-header-in-SoapClient.patch";
          hash = "sha256-xA8Wnrpr31H8wy3zHSNfezFNjUJt1HbSXn3qUMzeKc0=";
        }
        # Merged upstream: ad03a21cafab982eed321553c4bfcda1755182eb
        {
          patch = "fix-httplib2-version-check.patch";
          hash = "sha256-zUeF3v0N/eMyRVRH3tQLfuUfMKOD/B/aqEwFh/7HxH4=";
        }
        {
          patch = "reorder-type-check-to-avoid-a-TypeError.patch";
          hash = "sha256-2p5Cqvh0SPfJ8B38wb/xq7jWGYgpI9pavA6qkMUb6hA=";
        }
        # Merged upstream: 033e5899e131a2c1bdf7db5852f816f42aac9227
        {
          patch = "Support-integer-values-in-maxOccurs-attribute.patch";
          hash = "sha256-IZ0DP7io+ihcnB5547cR53FAdnpRLR6z4J5KsNrkfaI=";
        }
        {
          patch = "PR204.patch";
          hash = "sha256-JlxeTnKDFxvEMFBthZsaYRbNOoBvLJhBnXCRoiL/nVw=";
        }
      ]
    ++ [ ./stringIO.patch ];

  meta = {
    description = "Python simple and lightweight SOAP Library";
    homepage = "https://github.com/pysimplesoap/pysimplesoap";
    license = lib.licenses.lgpl3Plus;

    # I don't directly use this, only needed it as a dependency of debianbts
    #  so co-maintainers would be welcome.
    maintainers = [ lib.maintainers.nicoo ];
  };
}