Files
python-funcy/python-funcy.spec
Dirk Mueller ac642404bb - update to 2.0:
* added get_lax()
  * added lzip(strict) param
  * made autocurry() and friends support kw-only and pos-only
    arguments
  * improved call._whatever_ arg introspection: pos-only, kw-
    only, kwargs and varargs are supported
  * test against Python 3.11
  - minor doc fixes

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-funcy?expand=0&rev=20
2023-12-11 22:15:05 +00:00

61 lines
1.7 KiB
RPMSpec

#
# spec file for package python-funcy
#
# Copyright (c) 2023 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-%{**}}
Name: python-funcy
Version: 2.0
Release: 0
Summary: Functional tools for Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/Suor/funcy
Source: https://files.pythonhosted.org/packages/source/f/funcy/funcy-%{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
rm -r tests/__pycache__
%pytest
%files %{python_files}
%doc CHANGELOG README.rst
%license LICENSE
%{python_sitelib}/*
%changelog