summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-machotools/package.py
blob: 6c0d7ecd42ffe8d7bdff84c663bdfc9c12e7af20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2019 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 PyMachotools(PythonPackage):
    """Python package for editing Mach-O headers using macholib"""

    homepage = "https://pypi.python.org/pypi/machotools"
    url = "https://pypi.io/packages/source/m/machotools/machotools-0.2.0.tar.gz"

    version('0.2.0', 'bcc68332c4a80b4f84ec9c8083465416')

    depends_on('py-setuptools', type='build')
    depends_on('py-macholib', type=('build', 'run'))