forked from pool/python-google-api-core
Markéta Machová
dd4bf9780e
- Update to 2.10.0 * Add 'strict' to flatten_query_params to lower-case bools (#433) * Make grpc transcode logic work in terms of protobuf python objects (#428) * Require python 3.7+ (#410) * Restore support for grpcio-gcp (#418) - from version 2.8.2 * **deps:** allow protobuf < 5.0.0 (#400) * drop support for grpc-gcp (#401) * fix changelog header to consistent size (#394) * Fix typo in the BackgroundConsumer docstring (#395) - Refresh patches for new version * python-google-api-core-no-mock.patch - Update BuildRequires and Requires from setup.py OBS-URL: https://build.opensuse.org/request/show/1001903 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-google-api-core?expand=0&rev=42
103 lines
3.2 KiB
RPMSpec
103 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package python-google-api-core
|
|
#
|
|
# Copyright (c) 2022 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/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%define skip_python2 1
|
|
Name: python-google-api-core
|
|
Version: 2.10.0
|
|
Release: 0
|
|
Summary: Google API client core library
|
|
License: Apache-2.0
|
|
URL: https://github.com/googleapis/python-api-core
|
|
Source: https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-%{version}.tar.gz
|
|
# https://github.com/googleapis/python-api-core/issues/377
|
|
Patch0: python-google-api-core-no-mock.patch
|
|
BuildRequires: %{python_module google-auth >= 1.25.0}
|
|
BuildRequires: %{python_module googleapis-common-protos >= 1.53.0}
|
|
BuildRequires: %{python_module grpcio >= 1.33.2}
|
|
BuildRequires: %{python_module grpcio-gcp >= 0.2.2}
|
|
BuildRequires: %{python_module grpcio-status >= 1.33.2}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module protobuf >= 3.20.1}
|
|
BuildRequires: %{python_module pytz}
|
|
BuildRequires: %{python_module requests >= 2.18.0}
|
|
BuildRequires: %{python_module setuptools >= 40.3.0}
|
|
BuildRequires: %{python_module wheel}
|
|
# START TESTING SECTION
|
|
%if %{with test}
|
|
BuildRequires: %{python_module google-api-core >= %{version}}
|
|
BuildRequires: %{python_module proto-plus}
|
|
BuildRequires: %{python_module pytest-asyncio}
|
|
BuildRequires: %{python_module pytest}
|
|
%endif
|
|
# END TESTIN SECTION
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-google-auth >= 1.25.0
|
|
Requires: python-googleapis-common-protos >= 1.53.0
|
|
Requires: python-grpcio >= 1.33.2
|
|
Requires: python-grpcio-status >= 1.33.2
|
|
Requires: python-protobuf >= 3.20.1
|
|
Requires: python-pytz
|
|
Requires: python-requests >= 2.18.0
|
|
Requires: python-setuptools >= 40.3.0
|
|
Suggests: python-grpcio-gcp >= 0.2.2
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Core Library for Google Client Libraries.
|
|
|
|
%prep
|
|
%autosetup -p1 -n google-api-core-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%if !%{with test}
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%check
|
|
%if %{with test}
|
|
%pytest
|
|
%endif
|
|
|
|
%clean
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python_sitelib}/google/api_core
|
|
%{python_sitelib}/google_api_core-%{version}*-nspkg.pth
|
|
%{python_sitelib}/google_api_core-%{version}*-info
|
|
%endif
|
|
|
|
%changelog
|