2022-08-19 08:46:26 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-elastic-transport
|
|
|
|
#
|
2024-01-20 15:03:28 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2022-08-19 08:46:26 +02:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2023-04-21 16:42:15 +02:00
|
|
|
%{?sle15_python_module_pythons}
|
2022-08-19 08:46:26 +02:00
|
|
|
Name: python-elastic-transport
|
2024-01-20 15:03:28 +01:00
|
|
|
Version: 8.12.0
|
2022-08-19 08:46:26 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Transport classes and utilities shared among Python Elastic client libraries
|
|
|
|
License: Apache-2.0
|
|
|
|
URL: https://github.com/elastic/elastic-transport-python
|
|
|
|
Source: https://github.com/elastic/elastic-transport-python/archive/refs/tags/v%{version}.tar.gz#/elastic-transport-python-%{version}.tar.gz
|
2023-12-14 11:21:39 +01:00
|
|
|
BuildRequires: %{python_module base >= 3.7}
|
2022-08-19 08:46:26 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
Requires: python-certifi
|
2023-12-02 18:08:19 +01:00
|
|
|
Requires: python-urllib3
|
2022-08-19 08:46:26 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
%if 0%{python_version_nodots} < 37
|
|
|
|
Requires: python-dataclasses
|
|
|
|
%endif
|
|
|
|
# SECTION test requirements
|
|
|
|
BuildRequires: %{python_module aiohttp}
|
|
|
|
BuildRequires: %{python_module certifi}
|
|
|
|
BuildRequires: %{python_module dataclasses if %python-base < 3.7}
|
|
|
|
BuildRequires: %{python_module pytest-asyncio}
|
|
|
|
BuildRequires: %{python_module pytest-httpserver}
|
|
|
|
BuildRequires: %{python_module pytest-mock}
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
BuildRequires: %{python_module requests}
|
|
|
|
BuildRequires: %{python_module trustme}
|
2023-12-02 18:08:19 +01:00
|
|
|
BuildRequires: %{python_module urllib3}
|
2022-08-19 08:46:26 +02:00
|
|
|
# /SECTION
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
Transport classes and utilities shared among Python Elastic client libraries
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n elastic-transport-python-%{version}
|
|
|
|
sed -i '/addopts/d' setup.cfg
|
|
|
|
sed -i 's/from mock/from unittest.mock/' tests/node/test_http_*.py
|
|
|
|
|
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
|
|
|
%check
|
|
|
|
# these tests fail without proper name resolution or online connection to httpbin.org and badssl.com
|
|
|
|
donttest="(test_http_aiohttp and not TestAiohttpHttpNode)"
|
|
|
|
donttest="$donttest or test_tls_versions"
|
|
|
|
donttest="$donttest or test_assert_fingerprint_in_cert_chain"
|
2022-12-05 13:10:28 +01:00
|
|
|
# gh#elastic/elastic-transport-python#96
|
|
|
|
donttest="$donttest or test_url_to_node_config[https://[::1]:0/-https://[::1]:0-]"
|
2022-08-19 08:46:26 +02:00
|
|
|
%pytest -k "not ($donttest)"
|
|
|
|
|
|
|
|
%files %{python_files}
|
|
|
|
%doc CHANGELOG.md README.md
|
|
|
|
%license LICENSE
|
|
|
|
%{python_sitelib}/elastic_transport
|
|
|
|
%{python_sitelib}/elastic_transport-%{version}*-info
|
|
|
|
|
|
|
|
%changelog
|