1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6 setuptools,
7 six,
8}:
9
10buildPythonPackage rec {
11 pname = "suds";
12 version = "1.2.0";
13 pyproject = true;
14
15 src = fetchFromGitHub {
16 owner = "suds-community";
17 repo = "suds";
18 tag = "v${version}";
19 hash = "sha256-YdL+zDelRspQ6VMqa45vK1DDS3HjFvKE1P02USVBrEo=";
20 };
21
22 build-system = [ setuptools ];
23
24 env.SUDS_PACKAGE = "suds";
25
26 nativeCheckInputs = [
27 pytestCheckHook
28 six
29 ];
30
31 pythonImportsCheck = [ "suds" ];
32
33 meta = {
34 changelog = "https://github.com/suds-community/suds/blob/v${version}/CHANGELOG.md";
35 description = "Lightweight SOAP python client for consuming Web Services";
36 homepage = "https://github.com/suds-community/suds";
37 license = lib.licenses.lgpl3Plus;
38 maintainers = with lib.maintainers; [ wrmilling ];
39 };
40}