summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2022-03-17 07:42:31 -0400
committerGitHub <noreply@github.com>2022-03-17 05:42:31 -0600
commit5f3ab83e2d8692f0c341e67d505c1b7ab37c6492 (patch)
treec4e198ee259d40608ca42ba976779411666633cd
parentfa9894ae162b024b4092d1c411914a71cb107d18 (diff)
downloadspack-5f3ab83e2d8692f0c341e67d505c1b7ab37c6492.tar.gz
spack-5f3ab83e2d8692f0c341e67d505c1b7ab37c6492.tar.bz2
spack-5f3ab83e2d8692f0c341e67d505c1b7ab37c6492.tar.xz
spack-5f3ab83e2d8692f0c341e67d505c1b7ab37c6492.zip
New package: py-quart (#29142)
* [py-quart] created template * [py-quart] - added homepage - added description - added dependencies - removed fixmes * [py-quart] removed setuptools dependency
-rw-r--r--var/spack/repos/builtin/packages/py-quart/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-quart/package.py b/var/spack/repos/builtin/packages/py-quart/package.py
new file mode 100644
index 0000000000..bccf02c4ce
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-quart/package.py
@@ -0,0 +1,29 @@
+# Copyright 2013-2022 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 PyQuart(PythonPackage):
+ """A Python ASGI web microframework with the same API as
+ Flask."""
+
+ homepage = "https://gitlab.com/pgjones/quart/"
+ pypi = "Quart/Quart-0.16.3.tar.gz"
+
+ version('0.16.3', sha256='16521d8cf062461b158433d820fff509f98fb997ae6c28740eda061d9cba7d5e')
+
+ depends_on('python@3.7:', type=('build', 'run'))
+ depends_on('py-poetry-core@1:', type='build')
+ depends_on('py-aiofiles', type=('build', 'run'))
+ depends_on('py-blinker', type=('build', 'run'))
+ depends_on('py-click', type=('build', 'run'))
+ depends_on('py-hypercorn@0.11.2:', type=('build', 'run'))
+ depends_on('py-itsdangerous', type=('build', 'run'))
+ depends_on('py-jinja2', type=('build', 'run'))
+ depends_on('py-toml', type=('build', 'run'))
+ depends_on('py-werkzeug@2:', type=('build', 'run'))
+ depends_on('py-importlib-metadata', type=('build', 'run'), when='^python@:3.7')
+ depends_on('py-typing-extensions', type=('build', 'run'), when='^python@:3.7')