python311Packages.suds: init at 1.1.2

This commit is contained in:
Winston R. Milling
2024-07-11 09:10:59 -05:00
parent b029aeb5ce
commit 4f5c6cc337
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "suds";
version = "1.1.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-HVz6dBFxk7JEpCM/JGxIPZ9BGYtEjF8UqLrRHE9knys=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
six
];
pythonImportsCheck = [ "suds" ];
meta = {
changelog = "https://github.com/suds-community/suds/blob/v${version}/CHANGELOG.md";
description = "Lightweight SOAP python client for consuming Web Services";
homepage = "https://github.com/suds-community/suds";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ wrmilling ];
};
}
+2
View File
@@ -14870,6 +14870,8 @@ self: super: with self; {
sudachipy = callPackage ../development/python-modules/sudachipy { };
suds = callPackage ../development/python-modules/suds { };
sumo = callPackage ../development/python-modules/sumo { };
sumtypes = callPackage ../development/python-modules/sumtypes { };