diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2022-04-27 09:50:22 +0200 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:46:14 -0400 |
commit | 7acd0122307016477293df878d775d0b79eaeb34 (patch) | |
tree | d0dc3f53d0ebbded186eab85d7ae84c206e7e050 | |
parent | 207065aa6e2eedbbded0f69743b25f61d9b0ca4a (diff) | |
download | guix-7acd0122307016477293df878d775d0b79eaeb34.tar.gz |
gnu: Add python-sanic-testing.
* gnu/packages/python-web.scm (python-sanic-testing): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/python-web.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 574b7958cb..8b6d454780 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6362,6 +6362,30 @@ as a Python package.") the @code{BasicRouter}.") (license license:expat))) +(define-public python-sanic-testing + (package + (name "python-sanic-testing") + (version "22.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sanic-testing" version)) + (sha256 + (base32 "1vkgi9d3xyik507j4jy9s74mkl81hgx3c2d5y3aa1av9h6wjjivp")))) + (build-system python-build-system) + (arguments + ;; PyPi sources does not contain tests, recursive dependency on + ;; python-sanic. + (list #:tests? #f)) + (propagated-inputs (list python-httpx python-sanic-bootstrap + python-websockets)) + (home-page "https://github.com/sanic-org/sanic-testing/") + (synopsis "Test clients for Sanic") + (description "Internal package for @code{python-sanic}, which is +meant to be the core testing utility and clients for testing Sanic +applications.") + (license license:expat))) + (define-public python-sanic (package (name "python-sanic") |