diff options
author | Sinan <sbulutw@gmail.com> | 2019-05-14 18:51:37 -0700 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-05-15 10:51:37 +0900 |
commit | 63af41c0c69096d752d2b56e059c29924def2139 (patch) | |
tree | 6d0134acf7d1fd45c4a9956a1156e10fffa55d6e /var | |
parent | e2ce4386e20c424236e11cf5846d394bb866de66 (diff) | |
download | spack-63af41c0c69096d752d2b56e059c29924def2139.tar.gz spack-63af41c0c69096d752d2b56e059c29924def2139.tar.bz2 spack-63af41c0c69096d752d2b56e059c29924def2139.tar.xz spack-63af41c0c69096d752d2b56e059c29924def2139.zip |
New package: py-tblib (#11425)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-tblib/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-tblib/package.py b/var/spack/repos/builtin/packages/py-tblib/package.py new file mode 100644 index 0000000000..253df4e5ae --- /dev/null +++ b/var/spack/repos/builtin/packages/py-tblib/package.py @@ -0,0 +1,18 @@ +# 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 PyTblib(PythonPackage): + """Traceback fiddling library. Allows you to pickle tracebacks.""" + + homepage = "https://github.com/ionelmc/python-tblib" + url = "https://files.pythonhosted.org/packages/source/t/tblib/tblib-1.4.0.tar.gz" + + version('1.4.0', sha256='bd1ad564564a158ff62c290687f3db446038f9ac11a0bf6892712e3601af3bcd') + + depends_on('py-setuptools', type='build') |