summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorwspear <wjspear@gmail.com>2019-10-16 23:46:34 -0700
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-10-17 08:46:34 +0200
commit93c34039e488937e6803d20316c1d3607869067e (patch)
tree60046f76d0aa0abe784d35e461d089d3b5f0444b /var
parent6cd997e74379a2dd8719748095bd13a26dfbf74f (diff)
downloadspack-93c34039e488937e6803d20316c1d3607869067e.tar.gz
spack-93c34039e488937e6803d20316c1d3607869067e.tar.bz2
spack-93c34039e488937e6803d20316c1d3607869067e.tar.xz
spack-93c34039e488937e6803d20316c1d3607869067e.zip
python-editor: added new package at v1.0.4 (#13126)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-python-editor/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-editor/package.py b/var/spack/repos/builtin/packages/py-python-editor/package.py
new file mode 100644
index 0000000000..0a4fada91d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-python-editor/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 PyPythonEditor(PythonPackage):
+ """python-editor is a library that provides the editor module for
+ programmatically interfacing with your system's EDITOR variable."""
+
+ homepage = "https://pypi.org/project/python-editor/"
+ url = "https://pypi.io/packages/source/p/python-editor/python-editor-1.0.4.tar.gz"
+
+ version('1.0.4', sha256='51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b')
+
+ depends_on('python@2.7:2.7.999,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')