Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytestCheckHook, 6 setuptools, 7 six, 8}: 9 10buildPythonPackage rec { 11 pname = "suds"; 12 version = "1.1.2"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-HVz6dBFxk7JEpCM/JGxIPZ9BGYtEjF8UqLrRHE9knys="; 18 }; 19 20 build-system = [ setuptools ]; 21 22 nativeCheckInputs = [ 23 pytestCheckHook 24 six 25 ]; 26 27 pythonImportsCheck = [ "suds" ]; 28 29 meta = { 30 changelog = "https://github.com/suds-community/suds/blob/v${version}/CHANGELOG.md"; 31 description = "Lightweight SOAP python client for consuming Web Services"; 32 homepage = "https://github.com/suds-community/suds"; 33 license = lib.licenses.lgpl3Plus; 34 maintainers = with lib.maintainers; [ wrmilling ]; 35 }; 36}