forked from pool/python-openapi-core
- Revert to 0.16.x branch * python-jupyterlab-server-openapi (jupyterlab-server[openapi]) is the only consumer in the distribution and requires openapi-core~=0.16.1 * See gh#jupyterlab/jupyterlab_server#400 - Changelog from 0.16.1 to 0.16.6: * openapi-schema-validator 0.5.2 tests compatibility fix #527 * validators public api expose #455 * allow openapi-schema-validator 0.4 #458 * better unmarshaller finders with refactor #447 * werkzeug flask root path fix #449 * additionalProperties without schema should allow null. #444 * Add NullUnmarshaller #432 * Multi type unmarshaller #433 * Unmarshaller format refactor #434 OBS-URL: https://build.opensuse.org/request/show/1094151 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-openapi-core?expand=0&rev=31
88 lines
3.2 KiB
RPMSpec
88 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package python-openapi-core
|
|
#
|
|
# 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-core
|
|
Version: 0.16.6
|
|
Release: 0
|
|
Summary: Client- and server-side support for the OpenAPI Specification v3
|
|
License: BSD-3-Clause
|
|
URL: https://github.com/p1c2u/openapi-core
|
|
Source: https://github.com/p1c2u/openapi-core/archive/%{version}.tar.gz#/openapi-core-%{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
|
|
# SECTION test
|
|
BuildRequires: %{python_module Django >= 3.0}
|
|
BuildRequires: %{python_module Flask}
|
|
BuildRequires: %{python_module WebOb}
|
|
BuildRequires: %{python_module Werkzeug}
|
|
BuildRequires: %{python_module falcon >= 3.0}
|
|
BuildRequires: %{python_module isodate}
|
|
BuildRequires: %{python_module jsonschema-spec >= 0.1.1}
|
|
BuildRequires: %{python_module more-itertools}
|
|
BuildRequires: %{python_module openapi-schema-validator >= 0.3.0 with %python-openapi-schema-validator < 0.5}
|
|
BuildRequires: %{python_module openapi-spec-validator >= 0.5.0 with %python-openapi-spec-validator < 0.6}
|
|
BuildRequires: %{python_module parse}
|
|
BuildRequires: %{python_module pathable >= 0.4.0}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module responses}
|
|
# /SECTION
|
|
Requires: python-Werkzeug
|
|
Requires: python-isodate
|
|
Requires: python-jsonschema-spec >= 0.1.1
|
|
Requires: python-more-itertools
|
|
Requires: python-parse
|
|
Requires: python-pathable >= 0.4.0
|
|
Requires: python-typing-extensions >= 4.3.0
|
|
Requires: (python-openapi-schema-validator >= 0.3.0 with python-openapi-schema-validator < 0.5)
|
|
Requires: (python-openapi-spec-validator >= 0.5.0 with python-openapi-spec-validator < 0.6)
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Openapi-core is a Python library that adds client-side
|
|
and server-side support for the OpenAPI Specification
|
|
v3.0.0.
|
|
|
|
%prep
|
|
%setup -q -n openapi-core-%{version}
|
|
sed -i '/--cov/d' pyproject.toml
|
|
for f in openapi_core/contrib/falcon/views.py; do
|
|
[ -f $f -a ! -s $f ] && echo "# empty module" > $f || exit 1
|
|
done
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest tests/unit -k 'not (test_read_only_properties_invalid or test_write_only_properties_invalid)'
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python_sitelib}/openapi_core
|
|
%{python_sitelib}/openapi_core-%{version}*-info
|
|
|
|
%changelog
|