File python3-requests.spec of Package python3-requests.39164
#
# spec file for package python3-requests
#
# Copyright (c) 2021 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: python3-requests
Version: 2.24.0
Release: 0
Summary: Python HTTP Library
License: Apache-2.0
Group: Development/Languages/Python
URL: http://python-requests.org/
Source: https://files.pythonhosted.org/packages/source/r/requests/requests-%{version}.tar.gz
# PATCH-FIX-SUSE: do not hardcode versions in setup.py/requirements
Patch0: requests-no-hardcoded-version.patch
# PATCH-FIX-UPSTREAM: CVE-2023-32681.patch bsc#1211674
Patch1: CVE-2023-32681.patch
# PATCH-FIX-UPSTREAM CVE-2024-47081.patch gh#psf/requests#6965, bsc#1244039
Patch2: CVE-2024-47081.patch
BuildRequires: python3-certifi
BuildRequires: python3-py
BuildRequires: python3-setuptools
BuildRequires: python3-urllib3 >= 1.21.1
BuildRequires: python3-PySocks >= 1.5.6
BuildRequires: python3-chardet >= 3.0.2
BuildRequires: python3-idna < 2.8
BuildRequires: python3-idna >= 2.5
BuildRequires: python3-pytest-httpbin
BuildRequires: python3-pytest-mock
BuildRequires: python3-pytest
BuildRequires: ca-certificates
BuildRequires: fdupes
Requires: ca-certificates
Requires: python3-certifi >= 2017.4.17
Requires: python3-chardet >= 3.0.2
Requires: python3-idna < 2.8
Requires: python3-idna >= 2.5
Requires: python3-py
Requires: python3-urllib3 >= 1.21.1
Recommends: ca-certificates-mozilla
Recommends: python3-PySocks >= 1.5.6
Recommends: python3-cryptography >= 1.3.4
Recommends: python3-pyOpenSSL >= 0.14
BuildArch: noarch
%description
Requests is an HTTP library, written in Python, as an alternative
to Python's builtin urllib2 which requires work (even
method overrides) to perform basic tasks.
Features of Requests:
- GET, HEAD, POST, PUT, DELETE Requests:
+ HTTP Header Request Attachment.
+ Data/Params Request Attachment.
+ Multipart File Uploads.
+ CookieJar Support.
+ Redirection History.
+ Redirection Recursion Urllib Fix.
+ Automatic Decompression of GZipped Content.
+ Unicode URL Support.
- Authentication:
+ URL + HTTP Auth Registry.
%prep
%setup -q -n requests-%{version}
%autopatch -p1
# drop shebang from certs.py
sed -i '1s/^#!.*$//' requests/certs.py
# remove 'never' default parameter from digest-auth check
# requires httpbin 0.6.0
sed -i "s#\(httpbin.*\), 'never'#\1#" tests/test_requests.py
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes %{buildroot}%{$python_sitelib}/requests
%check
touch Pipfile
# exclude tests connecting to TARPIT
pytest tests -v -k "not (TestTimeout and connect)"
%files
%defattr(-,root,root)
%license LICENSE
%doc HISTORY.md README.md
%{python3_sitelib}/requests/
%{python3_sitelib}/requests-*
%changelog