diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-batchspawner/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-batchspawner/package.py b/var/spack/repos/builtin/packages/py-batchspawner/package.py new file mode 100644 index 0000000000..5169641049 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-batchspawner/package.py @@ -0,0 +1,22 @@ +# 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 PyBatchspawner(PythonPackage): + """This is a custom spawner for Jupyterhub that is designed for + installations on clusters using batch scheduling software.""" + + homepage = "https://github.com/jupyterhub/batchspawner" + pypi = "batchspawner/batchspawner-1.1.0.tar.gz" + + version('1.1.0', sha256='9bae72f7c1bd9bb11aa58ecc3bc9fae5475a10fdd92dc0c0d67fa7eb95c9dd3a') + + depends_on('python@3.3:3.999', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-async-generator@1.8:', type=('build', 'run')) + depends_on('py-jinja2', type=('build', 'run')) + depends_on('py-jupyterhub@0.5:', type=('build', 'run')) |