10 buildPythonPackage rec {
15 src = fetchFromGitHub {
16 owner = "suds-community";
18 rev = "refs/tags/v${version}";
19 hash = "sha256-YdL+zDelRspQ6VMqa45vK1DDS3HjFvKE1P02USVBrEo=";
22 build-system = [ setuptools ];
24 env.SUDS_PACKAGE = "suds";
31 pythonImportsCheck = [ "suds" ];
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 ];