forked from pool/python-tinyrpc
- Run tests - Skip python2 build as the 1.0.4 is no longer py2 compatible OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tinyrpc?expand=0&rev=16
71 lines
2.2 KiB
RPMSpec
71 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-tinyrpc
|
|
#
|
|
# 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-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-tinyrpc
|
|
Version: 1.0.4
|
|
Release: 0
|
|
Summary: A modular transport and protocol neutral RPC library
|
|
License: MIT
|
|
URL: https://github.com/mbr/tinyrpc
|
|
Source: https://github.com/mbr/tinyrpc/archive/%{version}.tar.gz
|
|
BuildRequires: %{python_module Werkzeug}
|
|
BuildRequires: %{python_module gevent}
|
|
BuildRequires: %{python_module msgpack}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module pyzmq}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-six
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
There are a number of jsonrpc libraries already out there on PyPI,
|
|
most of them handling one specific use case (e.g. JSON via WSGI,
|
|
using Twisted, or TCP sockets).
|
|
|
|
None of the libraries, however, made it easy for the author of
|
|
TinyRPC to reuse the jsonrpc-parsing bits and substitute a different
|
|
transport (i.e. going from json via TCP to an implementation using
|
|
WebSockets or ZeroMQ).
|
|
|
|
%prep
|
|
%setup -q -n tinyrpc-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# test_batch_dispatch - needs old pytest syntax, skip
|
|
%pytest -k 'not test_batch_dispatch'
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|