15
0

Accepting request 609881 from devel:languages:python:misc

JSON-RPC transport implementation

OBS-URL: https://build.opensuse.org/request/show/609881
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-json-rpc?expand=0&rev=1
This commit is contained in:
Todd R
2018-05-16 17:36:46 +00:00
committed by Git OBS Bridge
commit d7fadaffbb
6 changed files with 133 additions and 0 deletions

67
python-json-rpc.spec Normal file
View File

@@ -0,0 +1,67 @@
#
# spec file for package python-json-rpc
#
# 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 http://bugs.opensuse.org/
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-json-rpc
Version: 1.11.0
Release: 0
License: MIT
Summary: JSON-RPC transport implementation
Url: https://github.com/pavlov99/json-rpc
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/j/json-rpc/json-rpc-%{version}.tar.gz
Source10: https://raw.githubusercontent.com/pavlov99/json-rpc/%{version}/LICENSE.txt
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module mock}
BuildRequires: %{python_module nose}
# /SECTION
BuildArch: noarch
%python_subpackages
%description
JSON-RPC 2.0 and JSON-RPC 1.0 transport specification implementation.
This implementation does not have any transport functionality
realization, only protocol. Any client or server implementation is
easy based on current code, but requires transport libraries, such as
requests, gevent or zmq.
%prep
%setup -q -n json-rpc-%{version}
cp %{SOURCE10} .
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_exec setup.py test
%files %{python_files}
%doc README.rst
%license LICENSE.txt
%{python_sitelib}/*
%changelog