new package: py-exodus (#12291)
This commit is contained in:
parent
2f84db881b
commit
4f6916261c
1 changed files with 20 additions and 0 deletions
20
var/spack/repos/builtin/packages/py-exodus/package.py
Normal file
20
var/spack/repos/builtin/packages/py-exodus/package.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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 PyExodus(PythonPackage):
|
||||
"""Exodus is a tool that makes it easy to successfully relocate Linux
|
||||
ELF binaries from one system to another."""
|
||||
|
||||
homepage = "https://github.com/intoli/exodus"
|
||||
url = "https://pypi.org/packages/source/e/exodus-bundler/exodus-bundler-2.0.2.tar.gz"
|
||||
|
||||
version('2.0.2', sha256='4e896a2034b94cf7b4fb33d86a68e29a7d3b08e57541e444db34dddc6ac1ef68')
|
||||
|
||||
depends_on('musl', type='run', when='%clang')
|
||||
depends_on('musl', type='run', when='%gcc')
|
||||
depends_on('py-setuptools', type=('build', 'run'))
|
Loading…
Reference in a new issue