me
/
guix
Archived
1
0
Fork 0

gnu: Add python-sphinxcontrib-asyncio.

* gnu/packages/databases.scm (python-sphinxcontrib-asyncio): New variable.
master
Maxim Cournoyer 2021-11-04 21:39:33 -04:00
parent f72c4f3dca
commit 33cdba945b
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 19 additions and 0 deletions

View File

@ -2609,6 +2609,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")