
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
21 lines
801 B
Python
21 lines
801 B
Python
# 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 PyQtawesome(PythonPackage):
|
|
"""FontAwesome icons in PyQt and PySide applications"""
|
|
|
|
homepage = "https://github.com/spyder-ide/qtawesome"
|
|
url = "https://pypi.io/packages/source/Q/QtAwesome/QtAwesome-0.4.1.tar.gz"
|
|
|
|
version('0.4.1', sha256='9ea91efeb83e8b73f814aeca898c29cade0c087acec58e91b4f384595aeb4cfd')
|
|
version('0.3.3', sha256='c3c98ee4df0133ae42d202fea20253f8746266b4541c5df4269ca4131792ce0f')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-qtpy', type=('build', 'run'))
|
|
depends_on('py-six', type=('build', 'run'))
|