gnu: Add python-connection-pool.

* gnu/packages/python-xyz.scm (python-connection-pool): New variable.
This commit is contained in:
Ricardo Wurmus 2022-05-20 09:47:11 +02:00
parent 8d0ac5697c
commit 62a4ed258c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14398,6 +14398,23 @@ (define-public python-configargparse
(home-page "https://github.com/bw2/ConfigArgParse") (home-page "https://github.com/bw2/ConfigArgParse")
(license license:expat))) (license license:expat)))
(define-public python-connection-pool
(package
(name "python-connection-pool")
(version "0.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "connection_pool" version))
(sha256
(base32 "1p6hfkcl4n3hhhcgjbaxn21i7b1yipag6j7dnilir4k5xxx9whmz"))))
(build-system python-build-system)
(home-page "https://github.com/zhouyl/ConnectionPool")
(synopsis "Thread-safe connection pool")
(description "This package provides a library implementing a thread-safe
connection pool.")
(license license:expat)))
(define-public python-argparse-manpage (define-public python-argparse-manpage
(package (package
(name "python-argparse-manpage") (name "python-argparse-manpage")