summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Mengel <marc.mengel@gmail.com>2019-11-07 18:58:47 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2019-11-07 18:58:47 -0600
commita2627da7d9e57190644ab5ba2501a407e5864fce (patch)
tree0d3673b0f785557db2277f65fe6c79835c357325
parentfd01ac0ff15ed12cf382a279e330c7aec86a14ce (diff)
downloadspack-a2627da7d9e57190644ab5ba2501a407e5864fce.tar.gz
spack-a2627da7d9e57190644ab5ba2501a407e5864fce.tar.bz2
spack-a2627da7d9e57190644ab5ba2501a407e5864fce.tar.xz
spack-a2627da7d9e57190644ab5ba2501a407e5864fce.zip
New package: py-uwsgi (#13619)
* package py-uwsgi * package py-uwsgi * Update var/spack/repos/builtin/packages/py-uwsgi/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * license bits
-rw-r--r--var/spack/repos/builtin/packages/py-uwsgi/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-uwsgi/package.py b/var/spack/repos/builtin/packages/py-uwsgi/package.py
new file mode 100644
index 0000000000..1cda052948
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-uwsgi/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 PyUwsgi(PythonPackage):
+ """Web Application framework for low overhead web services"""
+
+ homepage = "https://github.com/unbit/uwsgi/"
+ url = "https://pypi.org/packages/source/u/uwsgi/uwsgi-2.0.18.tar.gz"
+
+ version('2.0.18', sha256='4972ac538800fb2d421027f49b4a1869b66048839507ccf0aa2fda792d99f583')
+
+ depends_on('py-setuptools', type='build')