python-nocasedict/python-nocasedict.spec
Steve Kowalik f2b1b48c40 - Update to 2.0.3:
* Installation of this package using “setup.py” is no longer supported.
  * Fixed issues resulting from removal of support for pytest.warns(None)
    in pytest version 8.
  * Added support for Python 3.12.
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nocasedict?expand=0&rev=11
2024-05-08 02:17:09 +00:00

59 lines
1.7 KiB
RPMSpec

#
# spec file for package python-nocasedict
#
# Copyright (c) 2024 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-nocasedict
Version: 2.0.3
Release: 0
Summary: A case-insensitive ordered dictionary for Python
License: LGPL-2.1-or-later
URL: https://github.com/pywbem/nocasedict
Source: https://files.pythonhosted.org/packages/source/n/nocasedict/nocasedict-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Class `NocaseDict`_ is a case-insensitive ordered dictionary that preserves
the original lexical case of its keys.
%prep
%setup -q -n nocasedict-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/nocasedict
%{python_sitelib}/nocasedict-%{version}.dist-info
%changelog