Skip to content
Snippets Groups Projects
Commit a6b690b7 authored by Lia Domide's avatar Lia Domide :christmas_tree:
Browse files

Add py-flask-restx package

parent 0178ac2c
No related branches found
No related tags found
4 merge requests!301create new experimental release,!300add spack post-installation testing,!279update py-elephant to 0.12.0,!226Upgrade TVB packages. Add unit-tests
# 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 PyFlaskRestx(PythonPackage):
"""
Requirement necessary for py-tvb-framework package.
"""
homepage = "https://pypi.org/project/flask-restx"
pypi = 'flask-restx/flask-restx-1.0.5.tar.gz'
maintainers = ['paulapopa', 'ldomide']
version('1.0.5', 'e23dc4ff24869c92faa719b7a58be1203ed741275ff32c9f03d0ab56ed01546c')
# python_requires
depends_on('python@3.8:', type=('build', 'run'))
# setup_requires
depends_on('py-pip', type=('build'))
depends_on('py-flask', type=('build', 'run'))
depends_on('py-aniso8601', type=('build', 'run'))
depends_on('py-jsonschema', type=('build', 'run'))
depends_on('py-pytz', type=('build', 'run'))
depends_on('py-werkzeug', type=('build', 'run'))
......@@ -37,6 +37,7 @@ class PyTvbFramework(PythonPackage):
depends_on('py-docutils', type=('build', 'run'))
depends_on('py-formencode', type=('build', 'run'))
depends_on('py-flask', type=('build', 'run'))
depends_on('py-flask-restx', type=('build', 'run'))
depends_on('py-h5py', type=('build', 'run'))
depends_on('py-jinja2', type=('build', 'run'))
depends_on('py-matplotlib', type=('build', 'run'))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment