mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
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:
parent
359d33ee40
commit
59a714057f
1 changed files with 21 additions and 0 deletions
|
@ -7987,6 +7987,27 @@ (define-public python-zeep
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:expat)))
|
(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
|
(define-public python-http-client
|
||||||
(package
|
(package
|
||||||
(name "python-http-client")
|
(name "python-http-client")
|
||||||
|
|
Loading…
Reference in a new issue