Files
python-python-jsonschema-ob…/python-python-jsonschema-objects.spec
Steve Kowalik e159e122b0 - Update to 0.4.1:
* This release just incorporates the fix for #223
  * Default values will now always serialize, even if the default value is null. Since this change could cause unexpected changes in serialized output the minor version has been bumped. Fixes #200
  * Literals now properly support comparisons of all types (#213)
  * oneOfs inside oneOfs (oneOf-ception?!) no longer fail to serialize (#214)
  * #203 validatorSchemas passed in are now respected
  * #208 oneOf roundtrip serializations work better
  * #207 Another fix for abc deprecation
  * Fixes import path for collections.abc to be compliant with Python 3.8 [#197] (h/t @adriangay) 
- Remove duplicate setuptools BuildRequires.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-jsonschema-objects?expand=0&rev=6
2022-01-21 03:10:25 +00:00

71 lines
2.2 KiB
RPMSpec

#
# spec file for package python-python-jsonschema-objects
#
# 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-%{**}}
# python2-Markdown missing
%define skip_python2 1
Name: python-python-jsonschema-objects
Version: 0.4.1
Release: 0
Summary: An object wrapper for JSON Schema definitions
License: MIT
URL: https://python-jsonschema-objects.readthedocs.org/
Source: https://files.pythonhosted.org/packages/source/p/python_jsonschema_objects/python_jsonschema_objects-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Markdown >= 2.4
Requires: python-inflection >= 0.2
Requires: python-jsonschema >= 2.3
Requires: python-six >= 1.5.2
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module Markdown >= 2.4}
BuildRequires: %{python_module inflection >= 0.2}
BuildRequires: %{python_module jsonschema >= 2.3}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module six >= 1.5.2}
# /SECTION
%python_subpackages
%description
An object wrapper for JSON Schema definitions
%prep
%setup -q -n python_jsonschema_objects-%{version}
%build
%python_build
%install
%python_install
%{python_expand rm -r %{buildroot}%{$python_sitelib}/python_jsonschema_objects/examples/
%fdupes %{buildroot}%{$python_sitelib}
}
%check
%pytest
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/*
%changelog