15
0
Files
python-flasgger/python-flasgger.spec
Markéta Machová 5d9559dbf0 Accepting request 973573 from home:mcalabkova:branches:devel:languages:python
- Update to 0.9.5
  * 'swag_from' supports 'pathlib.Path'
  * Added support for OpenAPI3 parameter schema parsing
  * Add support for custom validation_function and error_handler
  * Ensure downward compatibility for werkzeug
  * Changed jsonschema version supported to jsonschema>=3.0.1
  * Changed json data to be parsed from request directly
  * More changes, see upstream HISTORY

OBS-URL: https://build.opensuse.org/request/show/973573
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flasgger?expand=0&rev=7
2022-04-28 07:31:54 +00:00

70 lines
2.2 KiB
RPMSpec

#
# spec file for package python-flasgger
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-flasgger
Version: 0.9.5
Release: 0
Summary: Tool to extract swagger specs from Flask projects
License: MIT
Group: Development/Languages/Python
URL: https://github.com/rochacbruno/flasgger/
Source: https://files.pythonhosted.org/packages/source/f/flasgger/flasgger-%{version}.tar.gz
#BuildRequires: %{python_module Flask >= 0.10}
#BuildRequires: %{python_module PyYAML >= 3.0}
#BuildRequires: %{python_module flex}
#BuildRequires: %{python_module jsonschema >= 3.0.1}
#BuildRequires: %{python_module marshmallow}
#BuildRequires: %{python_module mistune}
#BuildRequires: %{python_module pytest >= 3.0.7}
#BuildRequires: %{python_module six >= 1.10}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Flask >= 0.10
Requires: python-PyYAML >= 3.0
Requires: python-jsonschema >= 3.0.1
Requires: python-mistune
Requires: python-six >= 1.10
BuildArch: noarch
%python_subpackages
%description
Flasgger is a Flask extension to extract OpenAPI=Specification from all Flask views registered in an API.
%prep
%setup -q -n flasgger-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
# upstream testsuite is very fragile and needs packages we don't have
#%check
#%%pytest
%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/*
%changelog