14
0
forked from pool/python-kmatch
Files
python-kmatch/python-kmatch.spec
Dirk Mueller b24ac05dcc - update to 0.5.0:
* Add support for python 3.9
  * Drop support for python 3.5, 3.6
- Remove unneeded BuildRequires on mock.
  * no upstream changelog

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kmatch?expand=0&rev=17
2023-12-27 14:25:48 +00:00

70 lines
1.9 KiB
RPMSpec

#
# spec file for package python-kmatch
#
# 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/
#
%{?sle15_python_module_pythons}
Name: python-kmatch
Version: 0.5.0
Release: 0
Summary: A language for matching/validating/filtering Python dictionaries
License: MIT
URL: https://github.com/ambitioninc/kmatch
Source: https://files.pythonhosted.org/packages/source/k/kmatch/kmatch-%{version}.tar.gz
# https://github.com/ambitioninc/kmatch/issues/42
Patch0: python-kmatch-no-mock.patch
BuildRequires: %{python_module setuptools}
BuildRequires: dos2unix
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
The kmatch library provides a language for matching Python
dictionaries. Patterns are specified as lists of filters combined
with logical operators.
%prep
%setup -q -n kmatch-%{version}
%patch0 -p1
sed -i '/nose/d' setup.py
dos2unix README.rst LICENSE
chmod a-x README.rst LICENSE
rm -r *.egg-info
%build
mv kmatch/tests/ .tests
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
mv .tests tests
%pytest tests/*_tests.py
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog