summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2019-01-14 15:13:17 -0800
committerAdam J. Stewart <ajstewart426@gmail.com>2019-01-14 17:13:17 -0600
commitbaf595351eb599ac2fcaf4e1250aa70ffcc080a2 (patch)
tree6fd4d95b66dedb736373bb853d174b1ff7c2ac7b
parent618741fce21c1b9bda9214544692f1f40f5d15da (diff)
downloadspack-baf595351eb599ac2fcaf4e1250aa70ffcc080a2.tar.gz
spack-baf595351eb599ac2fcaf4e1250aa70ffcc080a2.tar.bz2
spack-baf595351eb599ac2fcaf4e1250aa70ffcc080a2.tar.xz
spack-baf595351eb599ac2fcaf4e1250aa70ffcc080a2.zip
feature: py-invoke: new python package (#10225)
-rw-r--r--var/spack/repos/builtin/packages/py-invoke/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-invoke/package.py b/var/spack/repos/builtin/packages/py-invoke/package.py
new file mode 100644
index 0000000000..44028af8df
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-invoke/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2018 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 PyInvoke(PythonPackage):
+ """Pythonic task execution"""
+
+ homepage = "http://www.pyinvoke.org/"
+ url = "https://pypi.io/packages/source/i/invoke/invoke-1.2.0.tar.gz"
+
+ version('1.2.0', 'dc492f8f17a0746e92081aec3f86ae0b4750bf41607ea2ad87e5a7b5705121b7')
+
+ depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')