forked from pool/python-datadiff
provided was 2.0.0. - Disable broken tests with python 3.11, related to ordering of sets - Remove six dependency - Update to version 2.1.0: * Bump version * Seems like this is never used * Better exception testing pattern, better test coverage :) * Remove python <2.6 stuff; and an adhoc nose test runner * Only round, not convert to hashable, when comparing dict values * Coverage reporting * PEP8 and other good practice fixes * Add LICENSE file, build wheels * Move tests into package subdir * Add tox.ini and test against more versions of python * fix __bool__ case when dict only has equal type diffs * fuzzy matching for float comparisons, fix empty set diffs * test_hashable_dict_values * revert datadiff/tools.py hashable to maintain module_nose.tools compatibility * use hashable when comparing OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-datadiff?expand=0&rev=4
70 lines
2.4 KiB
RPMSpec
70 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-datadiff
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
# Copyright (c) 2019, Martin Hauke <mardnh@gmx.de>
|
|
#
|
|
# 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-datadiff
|
|
Version: 2.1.0
|
|
Release: 0
|
|
Summary: DataDiff is a library to provide human-readable diffs of python data structures
|
|
License: Apache-2.0
|
|
URL: https://sourceforge.net/projects/datadiff/
|
|
#Source: https://files.pythonhosted.org/packages/source/d/datadiff/datadiff-%%{version}.tar.gz
|
|
#Git-Clone: https://git.code.sf.net/p/datadiff/code
|
|
Source: datadiff-%{version}.tar.xz
|
|
Source1: https://www.apache.org/licenses/LICENSE-2.0.txt
|
|
Patch0: switch-to-pytest.patch
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module pytest}
|
|
# /SECTION
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
DataDiff is a library to provide human-readable diffs of python data structures.
|
|
It can handle sequence types (lists, tuples, etc), sets, and dictionaries.
|
|
Dictionaries and sequences will be diffed recursively, when applicable.
|
|
It has special-case handling for multi-line strings, showing them as a typical unified diff.
|
|
Drop-in replacements for some nose assertions are available. If the assertion fails,
|
|
a nice data diff is shown, letting you easily pinpoint the root difference.
|
|
|
|
%prep
|
|
%autosetup -p1 -n datadiff-%{version}
|
|
cp %{SOURCE1} .
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# Broken tests with py311
|
|
%pytest -k "not (test_diff_set or test_diff_frozenset)"
|
|
|
|
%files %{python_files}
|
|
%license LICENSE-2.0.txt
|
|
%{python_sitelib}/datadiff
|
|
%{python_sitelib}/datadiff-%{version}*-info
|
|
|
|
%changelog
|