diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-07 14:03:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-07 14:03:06 -0600 |
commit | e78865b3abb01cdb4f6bde1fb6762219fe1dbed8 (patch) | |
tree | 3e40cd2a3cf75fa1b5eedc7752c737cd2c4ec7f5 | |
parent | b6a6f284820600982550fe985dc513b41555f6da (diff) | |
download | spack-e78865b3abb01cdb4f6bde1fb6762219fe1dbed8.tar.gz spack-e78865b3abb01cdb4f6bde1fb6762219fe1dbed8.tar.bz2 spack-e78865b3abb01cdb4f6bde1fb6762219fe1dbed8.tar.xz spack-e78865b3abb01cdb4f6bde1fb6762219fe1dbed8.zip |
Add new py-extras package (#14025)
-rw-r--r-- | var/spack/repos/builtin/packages/py-extras/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-extras/package.py b/var/spack/repos/builtin/packages/py-extras/package.py new file mode 100644 index 0000000000..5e63cb93a8 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-extras/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 PyExtras(PythonPackage): + """Useful extra bits for Python - things that shold be in the standard + library.""" + + homepage = "https://github.com/testing-cabal/extras" + url = "https://pypi.io/packages/source/e/extras/extras-1.0.0.tar.gz" + + version('1.0.0', sha256='132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e') + + depends_on('py-setuptools', type='build') |