summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-06-07 05:02:15 +0800
committerGitHub <noreply@github.com>2020-06-06 16:02:15 -0500
commitc835b931091eecbf4b74f2c48be9086d8f78ea00 (patch)
tree25c63e9cb58e384c17875ade35a109afd0f37c6a /var
parent77fbdff8a232f71a8aa5a79aac7e91865f590e51 (diff)
downloadspack-c835b931091eecbf4b74f2c48be9086d8f78ea00.tar.gz
spack-c835b931091eecbf4b74f2c48be9086d8f78ea00.tar.bz2
spack-c835b931091eecbf4b74f2c48be9086d8f78ea00.tar.xz
spack-c835b931091eecbf4b74f2c48be9086d8f78ea00.zip
Add new package: py-louie (#16983)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-louie/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-louie/package.py b/var/spack/repos/builtin/packages/py-louie/package.py
new file mode 100644
index 0000000000..dc23bd7a4d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-louie/package.py
@@ -0,0 +1,21 @@
+# 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 PyLouie(PythonPackage):
+ """Louie provides Python programmers with a straightforward way to
+ dispatch signals between objects in a wide variety of contexts. It
+ is based on PyDispatcher, which in turn was based on a highly-rated
+ recipe in the Python Cookbook."""
+
+ homepage = "https://github.com/11craft/louie/"
+ url = "https://github.com/11craft/louie/archive/2.0.tar.gz"
+
+ version('2.0', sha256='ac274ef672511357fc15d784df841c238ae13d00964094571eebabb0b14c54b2')
+ version('1.1', sha256='4bc227171fc546d1a527ee3059fa17df6d35a0acc10db1f942dd3da42ad96408')
+
+ depends_on('py-setuptools', type='build')