summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorpeetsv <32349688+peetsv@users.noreply.github.com>2018-03-21 09:08:58 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2018-03-21 11:08:58 -0500
commit71802a57cf25330e23aa2a3327a0c6df9c2f1f62 (patch)
tree2a98de7083328235d0f1223d05bafe47677fa671 /var
parent8c9a5a95d85180aed48b143fea755440c303b3ce (diff)
downloadspack-71802a57cf25330e23aa2a3327a0c6df9c2f1f62.tar.gz
spack-71802a57cf25330e23aa2a3327a0c6df9c2f1f62.tar.bz2
spack-71802a57cf25330e23aa2a3327a0c6df9c2f1f62.tar.xz
spack-71802a57cf25330e23aa2a3327a0c6df9c2f1f62.zip
VMD-python v2.0.10 - new package (#7490)
* VMD-python v2.0.10 - new package * removing extraneous comments * flake8 error - trailing blank lines removed
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-vmd-python/package.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-vmd-python/package.py b/var/spack/repos/builtin/packages/py-vmd-python/package.py
new file mode 100644
index 0000000000..86c33b3fdd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-vmd-python/package.py
@@ -0,0 +1,40 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class PyVmdPython(PythonPackage):
+ """Installable VMD as a python module"""
+
+ homepage = "https://github.com/Eigenstate"
+ url = "https://github.com/Eigenstate/vmd-python/archive/v2.0.10.tar.gz"
+
+ version('2.0.10', '8c746d961497a676053b66e3dd692794')
+
+ depends_on('python@2.7:2.8')
+ depends_on('py-numpy')
+ depends_on('tcl')
+ depends_on('netcdf')
+ depends_on('expat')