SHA256
1
0
forked from pool/python-trio
python-trio/python-trio.spec

79 lines
3.0 KiB
RPMSpec

#
# spec file for package python-trio
#
# Copyright (c) 2019 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-%{**}}
%define skip_python2 1
Name: python-trio
Version: 0.11.0
Release: 0
License: MIT OR Apache-2.0
Summary: An async/await-native I/O library for humans and snake people
Url: https://github.com/python-trio/trio
Group: Development/Languages/Python
Source: https://github.com/python-trio/trio/archive/v%{version}.tar.gz#/trio-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
# SECTION test requirements
BuildRequires: %{python_module async_generator >= 1.9}
BuildRequires: %{python_module attrs >= 18.2.0}
BuildRequires: %{python_module idna}
BuildRequires: %{python_module outcome}
BuildRequires: %{python_module sniffio}
BuildRequires: %{python_module sortedcontainers}
%if "%python_flavor" < "3.7"
BuildRequires: %{python_module contextvars >= 2.1}
%endif
# /SECTION
BuildRequires: fdupes
Requires: python-async_generator >= 1.9
Requires: python-attrs >= 18.2.0
Requires: python-idna
Requires: python-outcome
Requires: python-sniffio
Requires: python-sortedcontainers
%if "%python_flavor" < "3.7"
Suggests: python-contextvars >= 2.1
%endif
BuildArch: noarch
%python_subpackages
%description
The Trio project's goal is to produce a production-quality, permissively licensed, async/await-native I/O library for Python. Like all async libraries, its main purpose is to help you write programs that do multiple things at the same time with parallelized I/O. A web spider that wants to fetch lots of pages in parallel, a web server that needs to juggle lots of downloads and websocket connections at the same time, a process supervisor monitoring multiple subprocesses... that sort of thing. Compared to other libraries, Trio attempts to distinguish itself with an obsessive focus on usability and correctness. Concurrency is complicated; we try to make it easy to get things right.
%prep
%setup -q -n trio-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# check fails. Some code are support in BSD only
#python_exec setup.py test
%files %{python_files}
%doc README.rst
%license LICENSE LICENSE.APACHE2 LICENSE.MIT
%{python_sitelib}/*
%changelog