py-executing: add new package (#29074)
This commit is contained in:
parent
0dd5d493d5
commit
b9d26caab8
1 changed files with 18 additions and 0 deletions
18
var/spack/repos/builtin/packages/py-executing/package.py
Normal file
18
var/spack/repos/builtin/packages/py-executing/package.py
Normal 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')
|
Loading…
Reference in a new issue