forked from pool/python-python-twitter
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-twitter?expand=0&rev=5
73 lines
2.3 KiB
RPMSpec
73 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-python-twitter
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%define oldpython python
|
|
Name: python-python-twitter
|
|
Version: 3.4.2
|
|
Release: 0
|
|
Summary: A Python wrapper around the Twitter API
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/bear/python-twitter
|
|
Source: https://files.pythonhosted.org/packages/source/p/python-twitter/python-twitter-%{version}.tar.gz
|
|
BuildRequires: %{python_module pytest-runner}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module future}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module requests-oauthlib}
|
|
BuildRequires: %{python_module requests}
|
|
# /SECTION
|
|
BuildRequires: fdupes
|
|
Requires: python-future
|
|
Requires: python-requests
|
|
Requires: python-requests-oauthlib
|
|
%ifpython2
|
|
Provides: %{oldpython}-twitter = %{version}
|
|
Obsoletes: %{oldpython}-twitter < %{version}
|
|
%endif
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
This library provides a Python interface for the Twitter API <https://dev.twitter.com/>.
|
|
|
|
Twitter <http://twitter.com> provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a web services API
|
|
which can be used using this library.
|
|
|
|
%prep
|
|
%setup -q -n python-twitter-%{version}
|
|
sed -i '1s/#!//' twitter/*.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%files %{python_files}
|
|
%doc AUTHORS.rst CHANGES README.rst GAE.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|