15
0
forked from pool/python-funcy
Files
python-funcy/python-funcy.spec
Tomáš Chvátal 5e0cd3b2f6 - Update to 1.11:
- switched docs and internals to Python 3
  - improved docs: better texts and examples here and there
  - support Python 3.7 officially
  - added popups over functions everywhere in docs
  - accept any iterables of errors in flow utils
  - fixed walk_values() for defaultdicts with empty factory
  - fixed xmap() signature introspection
  - documented lzip()

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-funcy?expand=0&rev=7
2019-03-12 16:47:02 +00:00

60 lines
1.7 KiB
RPMSpec

#
# spec file for package python-funcy
#
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-funcy
Version: 1.11
Release: 0
Summary: Functional tools for Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: http://github.com/Suor/funcy
Source: https://github.com/Suor/funcy/archive/%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module whatever}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
A collection of functional tools focused on practicality.
Inspired by clojure, underscore and the author's own abstractions.
%prep
%setup -q -n funcy-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc CHANGELOG README.rst
%license LICENSE
%{python_sitelib}/*
%changelog