summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-08-23 17:49:44 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-08-23 17:49:44 -0700
commite9d807108684656f0b4897cbd2be1e70f46524b7 (patch)
tree893ea746bb2b1a12a0fa27ff3aebeeaac177bad9
parenta9cd44cc2e3c51a599cd5348f1c9e842bc148030 (diff)
downloadspack-e9d807108684656f0b4897cbd2be1e70f46524b7.tar.gz
spack-e9d807108684656f0b4897cbd2be1e70f46524b7.tar.bz2
spack-e9d807108684656f0b4897cbd2be1e70f46524b7.tar.xz
spack-e9d807108684656f0b4897cbd2be1e70f46524b7.zip
New package: py-pydot2 (#12535)
-rw-r--r--var/spack/repos/builtin/packages/py-pydot2/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pydot2/package.py b/var/spack/repos/builtin/packages/py-pydot2/package.py
new file mode 100644
index 0000000000..483e3fe690
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pydot2/package.py
@@ -0,0 +1,18 @@
+# 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 PyPydot2(PythonPackage):
+ """Python interface to Graphviz's Dot"""
+
+ homepage = "https://pypi.org/project/pydot2/"
+ url = "https://pypi.io/packages/source/p/pydot2/pydot2-1.0.33.tar.gz"
+
+ version('1.0.33', sha256='02c0e681a1c437077e2bb2522fb81fa322e53ba7002cfda8b894db0392a1bc9b')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pyparsing', type=('build', 'run'))