
* Convert all `url` attributes in `PythonPackage`s to `pypi` attributes * add `pypi =` to flake8 exceptions
23 lines
793 B
Python
23 lines
793 B
Python
# Copyright 2013-2020 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.999.0', type=('build', 'run'))
|
|
depends_on('py-six@1.13.0:1.999.0', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|