summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2020-04-07 20:39:03 -0500
committerGitHub <noreply@github.com>2020-04-07 20:39:03 -0500
commitcc4bf086b9af6ae51a7d5ea1befa5911fbf3f4bb (patch)
tree2eab32a8f6f975fed6bb158670274550dbfe3261 /var
parentfb0bcf4127334a0b8db4d21a3966d607d3e161c4 (diff)
downloadspack-cc4bf086b9af6ae51a7d5ea1befa5911fbf3f4bb.tar.gz
spack-cc4bf086b9af6ae51a7d5ea1befa5911fbf3f4bb.tar.bz2
spack-cc4bf086b9af6ae51a7d5ea1befa5911fbf3f4bb.tar.xz
spack-cc4bf086b9af6ae51a7d5ea1befa5911fbf3f4bb.zip
py-args: new package at 0.1.0 (#15903)
* py-args: new package at 0.1.0 * py-args: update dependencies
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-args/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-args/package.py b/var/spack/repos/builtin/packages/py-args/package.py
new file mode 100644
index 0000000000..08364481e8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-args/package.py
@@ -0,0 +1,18 @@
+# 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 PyArgs(PythonPackage):
+ """Command Arguments for Humans."""
+
+ homepage = "https://github.com/kennethreitz/args"
+ url = "https://pypi.io/packages/source/a/args/args-0.1.0.tar.gz"
+
+ version('0.1.0', sha256='a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-nose', type='test')