Matej Cepl
7e49b2ba6f
- specfile: * update copyright - update to version 2.15.3: * Fix swapping handlers * Fix tests * Readable regexps in generated code - changes from version 2.15.2: * Fix nested oneOf and anyOf * Fix if-else block in anyOf block * Fix uniqueItems including lists or dicts * Add option to pass custom formats in generated code - changes from version 2.15.1: * Fix parsing date-time with +hhmm format * Fix generating code with custom regular expressions - changes from version 2.15.0: * Fix additional property equal to empty object is the same as True * Fix const with " * Add const to error message * Add JsonSchemaValueException (replacement for JsonSchemaException) + JsonSchemaException is base exception + JsonSchemaDefinitionException no longer inherits from JsonSchemaValueException * New option `use_default` to have option turn off default feature (`True` by default to be compatible) - changes from version 2.14.5: * Fix missing dependencies * Fix schema cache OBS-URL: https://build.opensuse.org/request/show/989588 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastjsonschema?expand=0&rev=1
62 lines
1.9 KiB
RPMSpec
62 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package python-fastjsonschema
|
|
#
|
|
# Copyright (c) 2022 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-fastjsonschema
|
|
Version: 2.15.3
|
|
Release: 0
|
|
License: BSD
|
|
oSummary: Fastest Python implementation of JSON schema
|
|
Url: https://github.com/seznam/python-fastjsonschema
|
|
Group: Development/Languages/Python
|
|
Source: https://files.pythonhosted.org/packages/source/f/fastjsonschema/fastjsonschema-%{version}.tar.gz
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
Suggests: python-colorama
|
|
Suggests: python-jsonschema
|
|
Suggests: python-json-spec
|
|
Suggests: python-pylint
|
|
Suggests: python-pytest
|
|
Suggests: python-pytest-benchmark
|
|
Suggests: python-pytest-cache
|
|
Suggests: python-validictory
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
Fastest Python implementation of JSON schema
|
|
|
|
%prep
|
|
%setup -q -n fastjsonschema-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|