%global __python3 /usr/bin/python3.12 %global python3_pkgversion 3.12 # When bootstrapping Python, we cannot test this yet # RHEL does not include the test dependencies %bcond_with tests # The extras are disabled on RHEL to avoid pysocks and deprecated requests[security] %bcond_with extras Name: python%{python3_pkgversion}-requests Version: 2.28.2 Release: 2%{?dist} Summary: HTTP library, written in Python, for human beings License: ASL 2.0 URL: https://pypi.io/project/requests Source: https://github.com/requests/requests/archive/v%{version}/requests-v%{version}.tar.gz # Explicitly use the system certificates in ca-certificates. # https://bugzilla.redhat.com/show_bug.cgi?id=904614 Patch0: system-certs.patch # Security fix for CVE-2023-32681 Patch1: https://github.com/psf/requests/commit/74ea7cf7a6.patch#/CVE-2023-32681.patch BuildArch: noarch BuildRequires: python%{python3_pkgversion}-devel BuildRequires: python%{python3_pkgversion}-rpm-macros BuildRequires: python%{python3_pkgversion}-charset-normalizer BuildRequires: python%{python3_pkgversion}-urllib3 BuildRequires: python%{python3_pkgversion}-idna BuildRequires: python%{python3_pkgversion}-setuptools %if %{with tests} BuildRequires: python%{python3_pkgversion}-pytest BuildRequires: python%{python3_pkgversion}-pytest-httpbin BuildRequires: python%{python3_pkgversion}-pytest-mock BuildRequires: python%{python3_pkgversion}-trustme %endif Requires: python%{python3_pkgversion}-charset-normalizer Requires: python%{python3_pkgversion}-urllib3 Requires: python%{python3_pkgversion}-idna %description Most existing Python modules for sending HTTP requests are extremely verbose and cumbersome. Python’s built-in urllib2 module provides most of the HTTP capabilities you should need, but the API is thoroughly broken. This library is designed to make HTTP requests easy for developers. %if %{with extras} %python_extras_subpkg -n python%{python3_pkgversion}-requests -i %{python3_sitelib}/*.egg-info security socks %endif %prep %autosetup -p1 -n requests-%{version} # env shebang in nonexecutable file sed -i '/#!\/usr\/.*python/d' requests/certs.py # Some doctests use the internet and fail to pass in Koji. Since doctests don't have names, I don't # know a way to skip them. We also don't want to patch them out, because patching them out will # change the docs. Thus, we set pytest not to run doctests at all. sed -i 's/ --doctest-modules//' pyproject.toml %build %py3_build %install %py3_install %check %py3_check_import requests %if %{with tests} # test_use_proxy_from_environment needs pysocks %pytest -v %{!?with_extras:-k "not test_use_proxy_from_environment"} %endif %files -n python%{python3_pkgversion}-requests %license LICENSE %doc README.md HISTORY.md %{python3_sitelib}/*.egg-info/ %{python3_sitelib}/requests/ %changelog * Tue Jan 23 2024 Miro Hrončok - 2.28.2-2 - Rebuilt for timestamp .pyc invalidation mode * Thu Oct 19 2023 Tomáš Hrnčiar - 2.28.2-1 - Initial package - Fedora contributions by: Adam Williamson Arun SAG Charalampos Stratakis David Malcolm Dennis Gilmore Igor Gnatenko Iryna Shcherbina Jeremy Cline Karolina Surma Kevin Fenzi Lumir Balhar Miro Hrončok Petr Viktorin Ralph Bean Randy Barlow Rex Dieter Robert Kuska Slavek Kabrda Stephen Gallagher Tom Callaway Toshio Kuratomi Yaakov Selkowitz yatinkarel