summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-archspec/package.py
blob: 3a79c0c4b63694ad784db7ec69c504572cb228a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2021 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)
class PyArchspec(PythonPackage):
    """A library for detecting, labeling and reasoning about
    microarchitectures.
    """

    homepage = "https://archspec.readthedocs.io/en/latest/"
    pypi = "archspec/archspec-0.1.1.tar.gz"

    maintainers = ['alalazo']

    version('0.1.1', sha256='34bafad493b41208857232e21776216d716de37ab051a6a4a1cc1653f7e26423')

    depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))

    depends_on('py-click@7.1.2:7', type=('build', 'run'))
    depends_on('py-six@1.13.0:1', type=('build', 'run'))

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