diff options
author | rvinaybharadwaj <vinayr@lanl.gov> | 2020-10-07 20:13:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 20:13:34 -0600 |
commit | 804b5f33f4a1102ea34c2777264745c36e7c942b (patch) | |
tree | b29da7b491f7ff9bad360a07867427f179c53ee0 /var | |
parent | 11bcdc6ad149f87cc0a926487cd9d0a1ba97a0c5 (diff) | |
download | spack-804b5f33f4a1102ea34c2777264745c36e7c942b.tar.gz spack-804b5f33f4a1102ea34c2777264745c36e7c942b.tar.bz2 spack-804b5f33f4a1102ea34c2777264745c36e7c942b.tar.xz spack-804b5f33f4a1102ea34c2777264745c36e7c942b.zip |
Add py-httpcore (#19187)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-httpcore/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-httpcore/package.py b/var/spack/repos/builtin/packages/py-httpcore/package.py new file mode 100644 index 0000000000..a161d9a171 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-httpcore/package.py @@ -0,0 +1,21 @@ +# 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 PyHttpcore(PythonPackage): + """The HTTP Core package provides a minimal low-level HTTP client, + which does one thing only. Sending HTTP requests.""" + + homepage = "https://github.com/encode/httpcore" + url = "https://pypi.io/packages/source/h/httpcore/httpcore-0.11.0.tar.gz" + + version('0.11.0', sha256='35ffc735d746b83f8fc6d36f82600e56117b9e8adc65d0c0423264b6ebfef7bf') + + depends_on('py-setuptools', type='build') + depends_on('py-wheel', type='build') + depends_on('py-sniffio@1.0:') + depends_on('py-h11@0.8:0.9') |