py-executing: add new package (#29074)

This commit is contained in:
Manuela Kuhn 2022-02-21 16:56:42 +01:00 committed by GitHub
parent 0dd5d493d5
commit b9d26caab8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,18 @@
# Copyright 2013-2022 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 PyExecuting(PythonPackage):
"""Get the currently executing AST node of a frame, and other information."""
homepage = "https://github.com/alexmojaki/executing"
pypi = "executing/executing-0.8.2.tar.gz"
version('0.8.2', sha256='c23bf42e9a7b9b212f185b1b2c3c91feb895963378887bb10e64a2e612ec0023')
depends_on('py-setuptools', type='build')
depends_on('py-setuptools-scm+toml', type='build')