forked from pool/python-httpretty
4e4ed8f352
- Fix spello in description. Move summary extent to description. OBS-URL: https://build.opensuse.org/request/show/518892 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpretty?expand=0&rev=26
62 lines
1.7 KiB
RPMSpec
62 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package python-httpretty
|
|
#
|
|
# Copyright (c) 2017 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-httpretty
|
|
Version: 0.8.14
|
|
Release: 0
|
|
Summary: HTTP client mocking tool for Python
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/gabrielfalcao/HTTPretty
|
|
Source: https://files.pythonhosted.org/packages/source/h/httpretty/httpretty-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
This library allows mocking of HTTP protocol based
|
|
unit tests.
|
|
It is similar to Ruby's FakeWeb.
|
|
|
|
%prep
|
|
%setup -q -n httpretty-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
# crazy deps still
|
|
%if 0
|
|
%check
|
|
%python_exec setup.py test
|
|
%endif
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%files %{python_files}
|
|
%doc COPYING README.rst
|
|
%{python_sitelib}/httpretty
|
|
%{python_sitelib}/httpretty*egg-info
|
|
|
|
%changelog
|