
* Added e4s-cl package * Version order change * Added e4s-cl dependencies * Added python-sotools dependency * [@spackbot] updating style on behalf of spoutn1k * Add missing versions to py- packages * Fix style * [@spackbot] updating style on behalf of spoutn1k * Update var/spack/repos/builtin/packages/e4s-cl/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/e4s-cl/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-python-sotools/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add docker removing patch for e4s-cl Co-authored-by: spoutn1k <spoutn1k@users.noreply.github.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
18 lines
593 B
Python
18 lines
593 B
Python
# Copyright 2013-2023 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.package import *
|
|
|
|
|
|
class PyPythonPtrace(PythonPackage):
|
|
"""python-ptrace is a debugger using ptrace (Linux, BSD and Darwin system
|
|
call to trace processes) written in Python."""
|
|
|
|
pypi = "python-ptrace/python-ptrace-0.9.8.tar.gz"
|
|
|
|
version("0.9.8", sha256="1e3bc6223f626aaacde8a7979732691c11b13012e702fee9ae16c87f71633eaa")
|
|
|
|
depends_on("py-setuptools", type="build")
|