Dirk Mueller
95e49eccef
* Add `target` request extension. * Fix support for connection `Upgrade` and `CONNECT` when some data in the stream has been read. * Fix support for async cancellations. * Fix trace extension when used with socks proxy. * Fix SSL context for connections using the "wss" scheme OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpcore?expand=0&rev=31
101 lines
3.1 KiB
RPMSpec
101 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-httpcore
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-httpcore%{psuffix}
|
|
Version: 1.0.4
|
|
Release: 0
|
|
Summary: Minimal low-level Python HTTP client
|
|
License: BSD-3-Clause
|
|
URL: https://github.com/encode/httpcore
|
|
Source: https://github.com/encode/httpcore/archive/%{version}.tar.gz#/httpcore-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM httpcore-allow-deprecationwarnings-test.patch gh#encode/httpcore#511, gh#agronholm/anyio#470
|
|
Patch1: httpcore-allow-deprecationwarnings-test.patch
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module hatch-fancy-pypi-readme}
|
|
BuildRequires: %{python_module hatchling}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-certifi
|
|
Requires: (python-anyio >= 3 with python-anyio < 5)
|
|
Requires: (python-h11 >= 0.13.0 with python-h11 < 0.15)
|
|
Requires: (python-sniffio >= 1.0 with python-sniffio < 2)
|
|
Recommends: python-h2 >= 3.0
|
|
Recommends: python-socksio >= 1.0
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
%if %{with test}
|
|
BuildRequires: %{python_module Werkzeug}
|
|
BuildRequires: %{python_module h2 >= 3.0}
|
|
BuildRequires: %{python_module httpcore = %{version}}
|
|
BuildRequires: %{python_module pytest >= 7.0.1}
|
|
BuildRequires: %{python_module pytest-asyncio >= 0.16.0}
|
|
BuildRequires: %{python_module pytest-httpbin}
|
|
BuildRequires: %{python_module pytest-trio >= 0.7.0}
|
|
BuildRequires: %{python_module trio >= 0.21.0}
|
|
%endif
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Python minimal low-level HTTP client.
|
|
|
|
%prep
|
|
%autosetup -p1 -n httpcore-%{version}
|
|
|
|
%if !%{with test}
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
# we don't ship socksio
|
|
donttest="socks5"
|
|
# gh#encode/httpcore#622
|
|
donttest+=" or test_request_with_content"
|
|
# gh#encode/httpcore!832
|
|
donttest+=" or test_ssl_request or test_extra_info"
|
|
%pytest -rsfE --asyncio-mode=strict -p no:unraisableexception -k "not ($donttest)"
|
|
%endif
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE.md
|
|
%{python_sitelib}/httpcore
|
|
%{python_sitelib}/httpcore-%{version}*-info
|
|
%endif
|
|
|
|
%changelog
|