diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-03-29 20:41:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 20:41:24 -0500 |
commit | 7bed5e7c1ac2b1e4a50f5889a2eeea17320f332b (patch) | |
tree | 19bae70fcd4a054d6a0f25f628aa422000d9d570 | |
parent | 0372582bf01a49b977f0c522fe900b73b6ba6658 (diff) | |
download | spack-7bed5e7c1ac2b1e4a50f5889a2eeea17320f332b.tar.gz spack-7bed5e7c1ac2b1e4a50f5889a2eeea17320f332b.tar.bz2 spack-7bed5e7c1ac2b1e4a50f5889a2eeea17320f332b.tar.xz spack-7bed5e7c1ac2b1e4a50f5889a2eeea17320f332b.zip |
py-envisage: add new package (#15748)
-rw-r--r-- | var/spack/repos/builtin/packages/py-envisage/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-envisage/package.py b/var/spack/repos/builtin/packages/py-envisage/package.py new file mode 100644 index 0000000000..06783c8fcb --- /dev/null +++ b/var/spack/repos/builtin/packages/py-envisage/package.py @@ -0,0 +1,25 @@ +# 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) + + +class PyEnvisage(PythonPackage): + """Envisage is a Python-based framework for building extensible + applications, that is, applications whose functionality can be extended by + adding "plug-ins". Envisage provides a standard mechanism for features to + be added to an application, whether by the original developer or by someone + else. In fact, when you build an application using Envisage, the entire + application consists primarily of plug-ins. In this respect, it is similar + to the Eclipse and Netbeans frameworks for Java applications.""" + + homepage = "https://docs.enthought.com/envisage" + url = "https://pypi.io/packages/source/e/envisage/envisage-4.9.2.tar.gz" + + version('4.9.2', sha256='ed9580ac6ea17b333f1cce5b94656aed584798d56d8bd364f996a06fe1ac32eb') + + depends_on('python@2.7:2.8,3.5:', type=('build', 'run')) + depends_on('py-apptools', type=('build', 'run')) + depends_on('py-setuptools', type=('build', 'run')) + depends_on('py-six', type=('build', 'run')) + depends_on('py-traits', type=('build', 'run')) |