File python-expiringdict.spec of Package failed_python-expiringdict
Name: python-expiringdict
Version: 1.2.0
Release: 0
Summary: lightweight in-memory expiring dict implementation
License: MIT
Group: Development/Libraries
AutoReqProv: no
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Build dependencies
BuildRequires: python3-devel >= 3.11
%description
expiringdict is a small in-memory dictionary-like object that stores
items using a LRU algorithm and expires items using time-based expiry.
%package -n python3-expiringdict
Summary: Python 3 module for expiringdict
Requires: python3
BuildArch: noarch
%prep
%setup -q
%build
%py3_build
%install
%py3_install
%files -n python3-expiringdict
%license LICENSE
%doc README.md
%{python3_sitelib}/expiringdict
%changelog