14
0
forked from pool/python-apiron
Files
python-apiron/python-apiron.spec
Matej Cepl 4ba652cb98 Accepting request 914866 from Application:ERP:GNUHealth:Factory
- version 6.0.0.post1
  * Move from Travis CI to GitHub Actions for testing and publishing
    Use PEP 517 builds
  * Testing matrix and trove classifiers for Python 3.9
    Type hints for all classes, methods, and functions
  * Support for Python 3.6 has been removed due to its impending end of life and 
    the desire to leverage features from 3.7
  * Remove Python 3.10 testing and support for now, as Travis CI only has 
    Python 3.10.0a5 which isn't compatible with recent pytest-randomly releases
  * Indicate (by renaming) that all functions in the client module are private, except for call

OBS-URL: https://build.opensuse.org/request/show/914866
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apiron?expand=0&rev=6
2021-08-29 20:40:35 +00:00

65 lines
2.2 KiB
RPMSpec

#
# spec file
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2019 Dr. Axel Braun <DocB@opensuse.org>
#
# 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
%define skip_python36 1
%define modname apiron
Name: python-%{modname}
Version: 6.0.0.post1
Release: 0
Summary: Apiron helps you cook a tasty client for RESTful APIs
License: MIT
URL: https://github.com/ithaka/apiron
Source: https://files.pythonhosted.org/packages/source/a/apiron/%{modname}-%{version}.tar.gz
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests >= 2.11.1}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
Requires: python-requests >= 2.11.1
BuildArch: noarch
%python_subpackages
%description
Gathering data from multiple services has become a ubiquitous task for web application developers. The complexity can grow quickly: calling an API endpoint with multiple parameter sets, calling multiple API endpoints, calling multiple endpoints in multiple APIs. While the business logic can get hairy, the code to interact with those APIs doesn't have to.
apiron provides declarative, structured configuration of services and endpoints with a unified interface for interacting with them.
%prep
%setup -q -n %{modname}-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# TestEndpoint.test_call - online test
%pytest -k 'not test_call'
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/*
%changelog