diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-07-21 03:38:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 20:38:17 -0500 |
commit | 5ec52fc3f8ffde94803c9b31d47d037741e37871 (patch) | |
tree | 8816190a6d96d7a18bc751cac571f59b4c643f3a | |
parent | c543b86e81d3a6072cb4c6188d6b083e9342d758 (diff) | |
download | spack-5ec52fc3f8ffde94803c9b31d47d037741e37871.tar.gz spack-5ec52fc3f8ffde94803c9b31d47d037741e37871.tar.bz2 spack-5ec52fc3f8ffde94803c9b31d47d037741e37871.tar.xz spack-5ec52fc3f8ffde94803c9b31d47d037741e37871.zip |
py-flask-restful: add new package (#24875)
-rw-r--r-- | var/spack/repos/builtin/packages/py-flask-restful/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-flask-restful/package.py b/var/spack/repos/builtin/packages/py-flask-restful/package.py new file mode 100644 index 0000000000..0a56189471 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-flask-restful/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2021 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 PyFlaskRestful(PythonPackage): + """Simple framework for creating REST APIs""" + + homepage = "https://www.github.com/flask-restful/flask-restful/" + pypi = "Flask-RESTful/Flask-RESTful-0.3.8.tar.gz" + + version('0.3.9', sha256='ccec650b835d48192138c85329ae03735e6ced58e9b2d9c2146d6c84c06fa53e') + + depends_on('py-setuptools', type='build') + depends_on('py-aniso8601@0.82:', type=('build', 'run')) + depends_on('py-flask@0.8:', type=('build', 'run')) + depends_on('py-six@1.3.0:', type=('build', 'run')) + depends_on('py-pytz', type=('build', 'run')) |