File python-amqpstorm.spec of Package python-amqpstorm
#
# spec file for package python-amqpstorm
#
# Copyright (c) 2020 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-%{**}}
Name: python-amqpstorm
Version: 2.7.2
Release: 0
Summary: Thread-safe Python RabbitMQ Client & Management library
License: MIT
Group: Development/Languages/Python
URL: https://github.com/eandersson/amqpstorm
Source: https://files.pythonhosted.org/packages/source/A/AMQPStorm/AMQPStorm-%{version}.tar.gz
BuildRequires: %{python_module mock}
BuildRequires: %{python_module nose-timer}
BuildRequires: %{python_module nose}
BuildRequires: %{python_module pamqp >= 2.0.0}
BuildRequires: %{python_module requests}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pamqp >= 2.0.0
Requires: python-requests
BuildArch: noarch
%if 0%{?suse_version} < 1500
BuildRequires: python
%endif
%python_subpackages
%description
Thread-safe Python RabbitMQ Client & Management library.
Supports Python 2.7 and Python 3.3+.
Tested against CPython, PyPy and Pyston.
When using a SSL connection, TLSv1 or higher is required.
%prep
%setup -q -n AMQPStorm-%{version}
sed -i -e "s/'pamqp>=2.0.0,<3.0'/'pamqp>=2.0.0'/" setup.py
%build
export LANG="en_US.UTF8"
%python_build
%install
export LANG="en_US.UTF8"
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}/amqpstorm
# remove generic named examples from sitelib
%python_expand rm -rf %{buildroot}%{$python_sitelib}/examples
%check
# test_heartbeat_basic_raise_on_missed_heartbeats randomly fails
%python_expand nosetests-%{$python_bin_suffix} -v amqpstorm/tests/unit -e test_heartbeat_basic_raise_on_missed_heartbeats
%files %{python_files}
%license LICENSE
%doc README.rst examples
%{python_sitelib}/*
%changelog