Add latest version of py-httpbin (#13315)

This commit is contained in:
Adam J. Stewart 2019-10-20 11:14:17 -05:00 committed by GitHub
parent db8f83d333
commit 5aea70e733
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,13 +10,17 @@ class PyHttpbin(PythonPackage):
"""HTTP Request and Response Service"""
homepage = "https://github.com/Runscope/httpbin"
url = "https://pypi.io/packages/source/h/httpbin/httpbin-0.5.0.tar.gz"
url = "https://pypi.io/packages/source/h/httpbin/httpbin-0.7.0.tar.gz"
version('0.7.0', sha256='cbb37790c91575f4f15757f42ad41d9f729eb227d5edbe89e4ec175486db8dfa')
version('0.5.0', sha256='79fbc5d27e4194ea908b0fa18e09a59d95d287c91667aa69bcd010342d1589b5')
depends_on('py-setuptools', type='build')
depends_on('py-decorator@3.4.0:', type=('build', 'run'))
depends_on('py-flask@0.10.1:', type=('build', 'run'))
depends_on('py-itsdangerous@0.24:', type=('build', 'run'))
depends_on('py-markupsafe@0.23:', type=('build', 'run'))
depends_on('py-six@1.6.1:', type=('build', 'run'))
depends_on('py-flask', type=('build', 'run'))
depends_on('py-markupsafe', type=('build', 'run'))
depends_on('py-decorator', type=('build', 'run'))
depends_on('py-itsdangerous', type=('build', 'run'))
depends_on('py-six', type=('build', 'run'))
depends_on('py-brotlipy', type=('build', 'run'))
depends_on('py-raven+flask', type=('build', 'run'))
depends_on('py-werkzeug@0.14.1:', type=('build', 'run'))