new package: py-connectionpool (#28173)

This commit is contained in:
Marcus Boden 2021-12-29 17:10:43 +01:00 committed by GitHub
parent 2018606c32
commit e09ab1a01c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class PyConnectionpool(PythonPackage):
"""Thread-safe connection pool for python."""
homepage = "https://github.com/zhouyl/ConnectionPool"
pypi = "connection_pool/connection_pool-0.0.3.tar.gz"
maintainers = ['marcusboden']
version('0.0.3', 'bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build')