py-contextvars: added new package at v2.4 (#19149)

This commit is contained in:
Adam J. Stewart 2020-10-05 02:20:48 -05:00 committed by GitHub
parent 25cb2a68d3
commit 8ba3f30f5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,17 @@
# 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)
class PyContextvars(PythonPackage):
"""This package implements a backport of Python 3.7 contextvars module
(see PEP 567) for Python 3.6."""
homepage = "https://github.com/MagicStack/contextvars"
url = "https://pypi.io/packages/source/c/contextvars/contextvars-2.4.tar.gz"
version('2.4', sha256='f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e')
depends_on('py-setuptools', type='build')
depends_on('py-immutables@0.9:', type=('build', 'run'))