From a83f6bdb46b2b49c35ec4efd665c845dc80fab14 Mon Sep 17 00:00:00 2001 From: rvinaybharadwaj Date: Wed, 7 Oct 2020 20:59:51 -0600 Subject: Add py-httpx (#19185) --- .../repos/builtin/packages/py-httpx/package.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-httpx/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-httpx/package.py b/var/spack/repos/builtin/packages/py-httpx/package.py new file mode 100644 index 0000000000..50dca9b2fb --- /dev/null +++ b/var/spack/repos/builtin/packages/py-httpx/package.py @@ -0,0 +1,24 @@ +# Copyright 2013-2020 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 PyHttpx(PythonPackage): + """HTTPX is a fully featured HTTP client for Python 3, which provides sync + and async APIs, and support for both HTTP/1.1 and HTTP/2.""" + + homepage = "https://github.com/encode/httpx" + url = "https://pypi.io/packages/source/h/httpx/httpx-0.15.2.tar.gz" + + version('0.15.2', sha256='713a2deaf96d85bbd4a1fbdf0edb27d6b4ee2c9aaeda8433042367e4b9e1628d') + version('0.11.1', sha256='7d2bfb726eeed717953d15dddb22da9c2fcf48a4d70ba1456aa0a7faeda33cf7') + + depends_on('py-setuptools', type='build') + depends_on('py-wheel', type='build') + depends_on('py-certifi') + depends_on('py-sniffio') + depends_on('py-httpcore@0.11:') + depends_on('py-rfc3986+idna2008@1.3:1.99') -- cgit v1.2.3-60-g2f50