2016-01-26 10:14:46 +01:00
|
|
|
#
|
|
|
|
# spec file for package python-boto3
|
|
|
|
#
|
2018-04-24 15:31:58 +02:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2016-01-26 10:14:46 +01: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 http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2017-05-18 20:48:30 +02:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2016-01-26 10:14:46 +01:00
|
|
|
Name: python-boto3
|
2018-08-13 21:09:39 +02:00
|
|
|
Version: 1.7.75
|
2016-01-26 10:14:46 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: Amazon Web Services Library
|
|
|
|
License: Apache-2.0
|
|
|
|
Group: Development/Languages/Python
|
2018-04-24 15:31:58 +02:00
|
|
|
URL: https://github.com/boto/boto3
|
|
|
|
Source: https://github.com/boto/boto3/archive/%{version}.tar.gz
|
2018-08-13 21:09:39 +02:00
|
|
|
BuildRequires: %{python_module botocore >= 1.10.75}
|
2018-04-24 15:31:58 +02:00
|
|
|
BuildRequires: %{python_module mock}
|
|
|
|
BuildRequires: %{python_module nose}
|
2018-05-11 09:17:10 +02:00
|
|
|
BuildRequires: %{python_module s3transfer}
|
2017-09-15 22:31:20 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2018-04-24 15:31:58 +02:00
|
|
|
Requires: python-botocore < 1.11.0
|
2018-08-13 21:09:39 +02:00
|
|
|
Requires: python-botocore >= 1.10.75
|
2016-01-26 10:14:46 +01:00
|
|
|
Requires: python-jmespath < 1.0.0
|
|
|
|
Requires: python-jmespath >= 0.7.1
|
2017-01-25 23:26:09 +01:00
|
|
|
Requires: python-s3transfer < 0.2.0
|
2017-05-18 20:48:30 +02:00
|
|
|
Requires: python-s3transfer >= 0.1.10
|
2016-01-26 10:14:46 +01:00
|
|
|
BuildArch: noarch
|
2018-04-24 15:31:58 +02:00
|
|
|
%ifpython2
|
|
|
|
BuildRequires: python2-futures
|
|
|
|
Requires: python2-futures
|
|
|
|
%endif
|
2017-05-18 20:48:30 +02:00
|
|
|
%python_subpackages
|
2016-01-26 10:14:46 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
|
|
|
|
Python, which allows Python developers to write software that makes use of
|
|
|
|
services like Amazon S3 and Amazon EC2.
|
|
|
|
|
|
|
|
For documentation consult the online documentation at
|
|
|
|
http://boto3.readthedocs.org/en/latest/
|
|
|
|
|
|
|
|
# Note to maintainers also familia with python-boto:
|
|
|
|
# The documentation generation requires access to AWS, thus it is not
|
|
|
|
# possible to generate the documentation in OBS
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n boto3-%{version}
|
|
|
|
|
|
|
|
%build
|
2017-05-18 20:48:30 +02:00
|
|
|
%python_build
|
2016-01-26 10:14:46 +01:00
|
|
|
|
|
|
|
%install
|
2017-05-18 20:48:30 +02:00
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2016-01-26 10:14:46 +01:00
|
|
|
|
2018-04-24 15:31:58 +02:00
|
|
|
%check
|
2018-05-11 09:17:10 +02:00
|
|
|
%python_expand nosetests-%{$python_bin_suffix} -v tests/unit
|
2018-04-24 15:31:58 +02:00
|
|
|
|
2017-05-18 20:48:30 +02:00
|
|
|
%files %{python_files}
|
2018-04-24 15:31:58 +02:00
|
|
|
%license LICENSE
|
|
|
|
%doc CONTRIBUTING.rst README.rst
|
2016-01-26 10:14:46 +01:00
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%changelog
|