vagrantc pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit 4d82d31188e3f299924cd2d889fd578a2fb68874 Author: Maxim Cournoyer <[email protected]> AuthorDate: Thu Nov 4 21:39:33 2021 -0400 gnu: Add python-sphinxcontrib-asyncio. * gnu/packages/databases.scm (python-sphinxcontrib-asyncio): New variable. --- gnu/packages/databases.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 7b98da2..c066b03 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2610,6 +2610,25 @@ streamlined for its use in the context of tortoise-orm. It removes support for many database kinds that tortoise-orm doesn't need, for example.") (license license:asl2.0))) +(define-public python-sphinxcontrib-asyncio + (package + (name "python-sphinxcontrib-asyncio") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib-asyncio" version)) + (sha256 + (base32 "0bkj010ygsr7m769llf2aq4bbjfhdwqrrabi98j8gpvyzvh2dzcr")))) + (build-system python-build-system) + (arguments '(#:tests? #f)) ;no test suite + (propagated-inputs (list python-sphinx)) + (home-page "https://github.com/aio-libs/sphinxcontrib-asyncio") + (synopsis "Sphinx extension to support coroutines in markup") + (description "This package is a Sphinx extension providing additional +coroutine-specific markup.") + (license license:asl2.0))) + (define-public python-tortoise-orm (package (name "python-tortoise-orm")
