diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2020-02-27 20:12:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 20:12:32 -0600 |
commit | 4d5e75d8252a06b53c684cfccd57aa0804fa083e (patch) | |
tree | 405e33b0408768a0dd54c380341f7a9238935f95 | |
parent | 7e13c9a6a0533bcf2f6fdb4fcd42f517875c9ca1 (diff) | |
download | spack-4d5e75d8252a06b53c684cfccd57aa0804fa083e.tar.gz spack-4d5e75d8252a06b53c684cfccd57aa0804fa083e.tar.bz2 spack-4d5e75d8252a06b53c684cfccd57aa0804fa083e.tar.xz spack-4d5e75d8252a06b53c684cfccd57aa0804fa083e.zip |
new package: py-auxlib (#15221)
-rw-r--r-- | var/spack/repos/builtin/packages/py-auxlib/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-auxlib/package.py b/var/spack/repos/builtin/packages/py-auxlib/package.py new file mode 100644 index 0000000000..4d18101e5d --- /dev/null +++ b/var/spack/repos/builtin/packages/py-auxlib/package.py @@ -0,0 +1,20 @@ +# 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) + +from spack import * + + +class PyAuxlib(PythonPackage): + """Auxlib is an auxiliary library to the python standard library.""" + + homepage = "https://github.com/kalefranz/auxlib" + url = "https://pypi.io/packages/source/a/auxlib/auxlib-0.0.43.tar.gz" + + version('0.0.43', sha256='0f175637e96a090a785767ce28483cf1aeec316a19afce9b2fbd113e1122786a') + + depends_on('py-setuptools', type='build') + depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3') + depends_on('py-ordereddict', type=('build', 'run'), when='^python@:2.6') + depends_on('py-wheel', type=('build', 'run')) |