summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorajw1980 <ajw1980@gmail.com>2019-03-26 15:08:20 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-03-26 15:08:20 -0500
commit99a51e7ed12cdd2bf81412b87f55b54cdfd8480b (patch)
tree9380a7422c45232ba33d906003056d4203a61218 /var
parent40121eddd984049f84f45479332b3932fe878e67 (diff)
downloadspack-99a51e7ed12cdd2bf81412b87f55b54cdfd8480b.tar.gz
spack-99a51e7ed12cdd2bf81412b87f55b54cdfd8480b.tar.bz2
spack-99a51e7ed12cdd2bf81412b87f55b54cdfd8480b.tar.xz
spack-99a51e7ed12cdd2bf81412b87f55b54cdfd8480b.zip
New package: py-luigi (#10970)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-luigi/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-luigi/package.py b/var/spack/repos/builtin/packages/py-luigi/package.py
new file mode 100644
index 0000000000..a831b8027e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-luigi/package.py
@@ -0,0 +1,23 @@
+# 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 PyLuigi(PythonPackage):
+ """Workflow mgmgt + task scheduling + dependency resolution"""
+
+ homepage = "https://github.com/spotify/luigi"
+ url = "https://pypi.io/packages/source/l/luigi/luigi-2.8.3.tar.gz"
+
+ version('2.8.3', sha256='8b5c84a3c3f4df07309056d3b98348b93c054f1931b7ee22fc29e7989f645c9e')
+
+ depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-tornado@4.0:4.99', type=('build', 'run'))
+ depends_on('py-python-daemon@:2.1', type=('build', 'run'))
+ depends_on('py-dateutil@2.7.5', when='@2.8.3:', type=('build', 'run'))
+
+ depends_on('py-test@3.3.0:', type='test')