new package: py-grequests
This commit is contained in:
parent
7303b6cdc9
commit
63f5054140
25
var/spack/repos/builtin/packages/py-grequests/package.py
Normal file
25
var/spack/repos/builtin/packages/py-grequests/package.py
Normal file
@ -0,0 +1,25 @@
|
||||
# Copyright 2013-2019 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 PyGrequests(PythonPackage):
|
||||
"""GRequests allows you to use Requests with Gevent to make asynchronous
|
||||
HTTP Requests easily.
|
||||
|
||||
Note: You should probably use requests-threads or requests-futures instead.
|
||||
"""
|
||||
|
||||
homepage = "https://github.com/spyoungtech/grequests"
|
||||
url = "https://pypi.io/packages/source/g/grequests/grequests-0.4.0.tar.gz"
|
||||
|
||||
version('0.4.0', sha256='8aeccc15e60ec65c7e67ee32e9c596ab2196979815497f85cf863465a1626490')
|
||||
version('0.3.0', sha256='0f41c4eee83bab39f5543af49665c08681637a0562a5704a3f7b2e4a996531c9')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-gevent', type=('build', 'run'))
|
||||
depends_on('py-requests', type=('build', 'run'))
|
||||
depends_on('py-nose', type='test')
|
Loading…
Reference in New Issue
Block a user