File python-webtest-aiohttp.spec of Package python-webtest-aiohttp
#
# spec file for package python-webtest-aiohttp
#
# Copyright (c) 2021 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-%{**}}
%define skip_python2 1
Name: python-webtest-aiohttp
Version: 2.0.0
Release: 0
Summary: WebTest for aio.httpweb applications
License: MIT
URL: https://github.com/sloria/webtest-aiohttp
Source: https://files.pythonhosted.org/packages/source/w/webtest-aiohttp/webtest-aiohttp-%{version}.tar.gz
Source1: https://raw.githubusercontent.com/sloria/webtest-aiohttp/master/test_webtest_aiohttp.py
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
# SECTION test requirements
BuildRequires: %{python_module aiohttp}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytest-sanic}
BuildRequires: %{python_module WebTest}
# /SECTION
BuildRequires: fdupes
Requires: python-aiohttp
Requires: python-WebTest
BuildArch: noarch
%python_subpackages
%description
webtest-aiohttp provides integration of WebTest with aiohttp.web applications.
%prep
%setup -q -n webtest-aiohttp-%{version}
cp %{SOURCE1} .
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc CHANGELOG.rst README.rst
%license LICENSE
%{python_sitelib}/*
%changelog