summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-05-14 18:47:28 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-05-15 10:47:28 +0900
commit544cf085b4795029c898faecd3ac0060c8baba24 (patch)
treec01890599c7341182dc68ab0fd050067257e98b5
parent6083de3baae9bf422ec6aacd6995a796969f1f8f (diff)
downloadspack-544cf085b4795029c898faecd3ac0060c8baba24.tar.gz
spack-544cf085b4795029c898faecd3ac0060c8baba24.tar.bz2
spack-544cf085b4795029c898faecd3ac0060c8baba24.tar.xz
spack-544cf085b4795029c898faecd3ac0060c8baba24.zip
New package: py-python-utils (#11422)
-rw-r--r--var/spack/repos/builtin/packages/py-python-utils/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-utils/package.py b/var/spack/repos/builtin/packages/py-python-utils/package.py
new file mode 100644
index 0000000000..a3e8865eb0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-python-utils/package.py
@@ -0,0 +1,19 @@
+# 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 PyPythonUtils(PythonPackage):
+ """Python Utils is a collection of small Python functions and classes
+ which make common patterns shorter and easier."""
+
+ homepage = "https://github.com/WoLpH/python-utils"
+ url = "https://files.pythonhosted.org/packages/source/p/python-utils/python-utils-2.3.0.tar.gz"
+
+ version('2.3.0', sha256='34aaf26b39b0b86628008f2ae0ac001b30e7986a8d303b61e1357dfcdad4f6d3')
+
+ depends_on('py-setuptools', type='build')