You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-wrapt/python-wrapt.spec

74 lines
1.5 KiB

%bcond docs 1
Name: python-wrapt
Version: 1.13.3
Release: %autorelease
Summary: A Python module for decorators, wrappers and monkey patching
License: BSD-2-Clause
URL: https://github.com/GrahamDumpleton/wrapt
Source0: https://github.com/GrahamDumpleton/wrapt/archive/%{version}.tar.gz
BuildRequires: gcc
BuildRequires: python3-devel
BuildRequires: %{py3_dist setuptools}
%global _description %{expand:
The aim of the wrapt module is to provide a transparent object proxy for
Python, which can be used as the basis for the construction of function
wrappers and decorator functions.}
%description %_description
%package -n python3-wrapt
Summary: %{summary}
%description -n python3-wrapt %_description
%if %{with docs}
%package doc
Summary: Documentation for the wrapt module
# docs/requirements.txt
BuildRequires: %{py3_dist sphinx}
BuildRequires: %{py3_dist sphinx_rtd_theme}
%description doc
%{summary}.
%endif
%prep
%setup -q -n wrapt-%{version}
# Remove bundled egg-info in case it exists
rm -rf wrapt.egg-info
%build
%py3_build
%if %{with docs}
# for docs
pushd docs
sphinx-build -b html -d build/doctrees . build/html
popd
%endif
%install
%py3_install
%if %{with docs}
%files doc
%license LICENSE
%doc docs/build/html
%endif
%files -n python3-wrapt
9 years ago
%doc README.rst
%license LICENSE
%{python3_sitearch}/wrapt
%{python3_sitearch}/wrapt-%{version}-py%{python3_version}.egg-info
%changelog
%autochangelog