2015-01-16 15:00:27 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-pyvmomi
|
|
|
|
#
|
2024-04-08 08:12:53 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2015-01-16 15:00:27 +00:00
|
|
|
# Copyright (c) 2014 LISA GmbH, Bingen, Germany.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-09-16 07:31:40 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-05-17 12:09:34 +00:00
|
|
|
#
|
2015-01-16 15:00:27 +00:00
|
|
|
|
|
|
|
|
2024-04-08 08:12:53 +00:00
|
|
|
%define skip_python312 1
|
|
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
2015-01-16 15:00:27 +00:00
|
|
|
Name: python-pyvmomi
|
2021-11-06 10:38:38 +00:00
|
|
|
Version: 7.0.3
|
2015-01-16 15:00:27 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: VMware vSphere Python SDK
|
2015-05-17 12:09:34 +00:00
|
|
|
License: Apache-2.0
|
2015-01-16 15:00:27 +00:00
|
|
|
Group: Development/Languages/Python
|
2018-04-18 19:06:26 +00:00
|
|
|
URL: https://github.com/vmware/pyvmomi
|
2020-11-03 13:54:45 +00:00
|
|
|
Source: https://github.com/vmware/pyvmomi/archive/v%{version}.tar.gz#/pyvmomi-%{version}.tar.gz
|
2017-11-30 14:35:50 +00:00
|
|
|
BuildRequires: %{python_module fixtures >= 1.3.0}
|
|
|
|
BuildRequires: %{python_module requests >= 2.3.0}
|
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: %{python_module six >= 1.7.3}
|
2019-09-16 07:31:40 +00:00
|
|
|
BuildRequires: dos2unix
|
2017-11-30 14:35:50 +00:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2020-04-14 13:52:40 +00:00
|
|
|
# SECTION test requirements
|
|
|
|
BuildRequires: %{python_module testtools >= 0.9.34}
|
|
|
|
BuildRequires: %{python_module tox}
|
|
|
|
BuildRequires: %{python_module vcrpy}
|
|
|
|
# /SECTION
|
2018-03-04 07:06:35 +00:00
|
|
|
Requires: python-requests >= 2.3.0
|
|
|
|
Requires: python-six >= 1.7.3
|
2019-09-16 07:31:40 +00:00
|
|
|
Recommends: python-lxml
|
2021-05-28 11:31:19 +00:00
|
|
|
Recommends: python-pyOpenSSL
|
2015-01-16 15:00:27 +00:00
|
|
|
BuildArch: noarch
|
2017-11-30 14:35:50 +00:00
|
|
|
%python_subpackages
|
|
|
|
|
2015-01-16 15:00:27 +00:00
|
|
|
%description
|
|
|
|
pyVmomi is the Python SDK for the VMware vSphere API that allows you to manage
|
|
|
|
ESX, ESXi, and vCenter.
|
|
|
|
|
|
|
|
%prep
|
2017-11-30 14:35:50 +00:00
|
|
|
%setup -q -n pyvmomi-%{version}%{?version_suffix}
|
2019-09-16 07:31:40 +00:00
|
|
|
dos2unix README.rst LICENSE.txt NOTICE.txt
|
|
|
|
|
|
|
|
# https://github.com/vmware/pyvmomi/pull/750
|
|
|
|
# Unpin vcrpy; the fix was released
|
|
|
|
sed -i 's/vcrpy<2/vcrpy/' test-requirements.txt
|
2015-01-16 15:00:27 +00:00
|
|
|
|
|
|
|
%build
|
2017-11-30 14:35:50 +00:00
|
|
|
%python_build
|
2015-01-16 15:00:27 +00:00
|
|
|
|
|
|
|
%install
|
2017-11-30 14:35:50 +00:00
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2015-01-16 15:00:27 +00:00
|
|
|
|
|
|
|
%check
|
2021-05-28 11:31:19 +00:00
|
|
|
%pyunittest discover -v
|
2015-01-16 15:00:27 +00:00
|
|
|
|
2018-04-18 19:06:26 +00:00
|
|
|
%files %{python_files}
|
|
|
|
%license LICENSE.txt
|
|
|
|
%doc NOTICE.txt README.rst
|
2016-09-21 11:08:13 +00:00
|
|
|
%{python_sitelib}/pyVim
|
|
|
|
%{python_sitelib}/pyVmomi
|
2019-09-16 07:31:40 +00:00
|
|
|
%{python_sitelib}/pyvmomi-%{version}*-py*.egg-info
|
2015-01-16 15:00:27 +00:00
|
|
|
|
|
|
|
%changelog
|