15
0
Files
python-openapi-spec-validator/python-openapi-spec-validator.spec
Dirk Mueller 99c9e8ad22 Accepting request 1085790 from home:bnavigator:branches:devel:languages:python
- Update to 0.5.6
  * Fix typo in server variables schema for OpenAPI 3.1.0 #198
  * Include tests in sdist archives #199
  * jsonschema 4.17 dependency limit #203
  * add python 3.11 support #204
- Release 0.5.5
  * update openapi-schema-validator dependecy #194
- Release 0.5.4
  * schema properties validation recursion fix #193
- Release 0.5.3
  * fix custom format checker not found test #190
  * fix property missing reference validation #191
- Release 0.5.2
  * Use stdlib importlib.resources on python >= 3.9 #174
  * mypy typing module version fix #181
  * Drop no longer used runtime dependency on PyYAML #180
  * allow openapi-schema-validator 0.4 #187

OBS-URL: https://build.opensuse.org/request/show/1085790
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-openapi-spec-validator?expand=0&rev=22
2023-05-09 20:47:25 +00:00

88 lines
3.1 KiB
RPMSpec

#
# spec file for package python-openapi-spec-validator
#
# Copyright (c) 2023 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/
#
Name: python-openapi-spec-validator
Version: 0.5.6
Release: 0
Summary: Python module for validating OpenAPI Specs against Swagger and OAS3
License: Apache-2.0
URL: https://github.com/p1c2u/openapi-spec-validator
Source: https://github.com/p1c2u/openapi-spec-validator/archive/%{version}.tar.gz#/openapi-spec-validator-%{version}-gh.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Provides: python-openapi_spec_validator
Requires: python-importlib-resources
Requires: python-jsonschema-spec >= 0.1.1
Requires: python-lazy-object-proxy >= 1.7.1
Requires: python-openapi-schema-validator >= 0.4.2
Requires: (python-jsonschema >= 4.0.0 with python-jsonschema < 4.18)
%if %{python_version_nodots} < 39
Requires: python-importlib-resources >= 5.8.0
%endif
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module importlib-resources >= 5.8.0 if %python-base < 3.9}
BuildRequires: %{python_module jsonschema >= 4.0.0 with %python-jsonschema < 4.18}
BuildRequires: %{python_module jsonschema-spec >= 0.1.1}
BuildRequires: %{python_module lazy-object-proxy >= 1.7.1}
BuildRequires: %{python_module openapi-schema-validator >= 0.4.2}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
OpenAPI Spec Validator is a Python library that validates
OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and
OpenAPI 3.0.0 specification. The validator aims to check
for full compliance with the Specification.
%prep
%autosetup -p1 -n openapi-spec-validator-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/openapi-spec-validator
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%post
%python_install_alternative openapi-spec-validator
%postun
%python_uninstall_alternative openapi-spec-validator
%check
sed -i 's:tool.pytest.ini_options:hide:' pyproject.toml
%pytest -m 'not network'
%files %{python_files}
%doc README.rst
%license LICENSE
%python_alternative %{_bindir}/openapi-spec-validator
%{python_sitelib}/openapi_spec_validator
%{python_sitelib}/openapi_spec_validator-%{version}.dist-info
%changelog