%global srcname asyncstdlib Name: python-%{srcname} Version: 3.13.1 Release: 1%{?dist} Summary: Async equivalents of many Python stdlib utilities License: MIT URL: https://github.com/maxfischer2781/asyncstdlib Source0: %{pypi_source %{srcname}} BuildArch: noarch BuildRequires: python3-devel BuildRequires: pyproject-rpm-macros BuildRequires: python3dist(pytest) BuildRequires: python3dist(pytest-asyncio) %description Asyncstdlib provides asynchronous counterparts to commonly used Python stdlib utilities such as map, zip, enumerate, groupby, chain, functools-like helpers, and more. It augments asyncio with composable async primitives. # ------------------------------ # Python 3 subpackage # ------------------------------ %package -n python3-%{srcname} Summary: %{summary} %description -n python3-%{srcname} %{description} %prep %autosetup -n %{srcname}-%{version} %generate_buildrequires %pyproject_buildrequires %build %pyproject_wheel %install %pyproject_install %pyproject_save_files %{srcname} %check # Skip annotation-related tests broken under Python 3.14 %pytest -k "not test_wrapper_attributes" %files -n python3-%{srcname} -f %{pyproject_files} %license LICENSE %doc README.rst %changelog * Wed Dec 03 2025 Jayaraj J - 3.13.1-1 - Initial package