summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-sotools/package.py
blob: 1ac4b3f548b94aaca32f600eac4b2f50e6f9b174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2024 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 PyPythonSotools(PythonPackage):
    """python-sotools is a collection of tools to work with ELF shared objects"""

    pypi = "python-sotools/python-sotools-0.1.0.tar.gz"

    license("BSD-3-Clause")

    version("0.1.0", sha256="39a088f2ca384294e19a96a82d883feb729f0f2e5ae21d9785be357124ec61f2")

    depends_on("py-setuptools", type="build")
    depends_on("py-pyelftools", type=("build", "run"))