gnu: Add python-pysimplesoap.

* gnu/packages/python-web.scm (python-pysimplesoap): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Felix Lechner 2022-12-21 06:48:21 -08:00 committed by Ludovic Courtès
parent 359d33ee40
commit 59a714057f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -7987,6 +7987,27 @@ (define-public python-zeep
@end itemize")
(license license:expat)))
(define-public python-pysimplesoap
(package
(name "python-pysimplesoap")
(version "1.16.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "PySimpleSOAP" version))
(sha256
(base32
"1qb7dn8m1cjwzql7vqj9i1hsscb7nyhimmlp45jrpzxds38g9fxi"))))
(build-system python-build-system)
(arguments
(list #:tests? #f)) ;tests fail due to attempted web access
(home-page "https://github.com/pysimplesoap/pysimplesoap")
(synopsis "Simple and lightweight SOAP library for Python")
(description
"This package provides a simple and lightweight Python SOAP library for
client and server webservices interfaces, aimed to be as small and easy as
possible, supporting most common functionality.")
(license license:lgpl3+)))
(define-public python-http-client
(package
(name "python-http-client")