
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
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
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 PySymengine(PythonPackage):
|
|
"""Python wrappers for SymEngine, a symbolic manipulation library."""
|
|
|
|
homepage = "https://github.com/symengine/symengine.py"
|
|
url = "https://github.com/symengine/symengine.py/archive/v0.2.0.tar.gz"
|
|
git = "https://github.com/symengine/symengine.py.git"
|
|
|
|
version('develop', branch='master')
|
|
version('0.2.0', sha256='8f6468137baa7f799e047dd0b9149c4017d8d32e755f1e0329209680879c1f8f')
|
|
|
|
# Build dependencies
|
|
depends_on('python@2.7:2.8,3.3:')
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-cython@0.19.1:', type='build')
|
|
depends_on('cmake@2.8.7:', type='build')
|
|
depends_on('symengine@0.2.0:')
|
|
|
|
def build_args(self, spec, prefix):
|
|
return ['--symengine-dir={0}'.format(spec['symengine'].prefix)]
|