15
0
forked from pool/python-funcy
Files
python-funcy/python-funcy.spec
Tomáš Chvátal ec77102240 Accepting request 701958 from home:pgajdos
- version update to 1.12
  - added @cached_readonly
  - more introspection in @decorator decorators
  - documented @cached_property inheritance limitations
  - included tests in pypi sdist tarball (Tomáš Chvátal)
- back to PyPI tarball

OBS-URL: https://build.opensuse.org/request/show/701958
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-funcy?expand=0&rev=9
2019-05-10 09:30:40 +00:00

61 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.12
Release: 0
Summary: Functional tools for Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: http://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