15
0
Files
python-json-rpc/python-json-rpc.spec

68 lines
2.1 KiB
RPMSpec
Raw Normal View History

#
# 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