Blame SPECS/python3.11-attrs.spec

170207
%global __python3 /usr/bin/python3.11
170207
%global python3_pkgversion 3.11
170207
170207
%global modname attrs
170207
170207
%if 0%{?rhel} && 0%{?rhel} <= 9
170207
# Can't run tests on RHEL9 due to the need for hypothesis and zope-interface
170207
%bcond_with tests
170207
%else
170207
# Turn the tests off when bootstrapping Python, because pytest requires attrs
170207
%bcond_without tests
170207
%endif
170207
170207
Name:           python%{python3_pkgversion}-attrs
170207
Version:        22.1.0
170207
Release:        1%{?dist}
170207
Summary:        Python attributes without boilerplate
170207
170207
License:        MIT
170207
URL:            http://www.attrs.org/
170207
BuildArch:      noarch
170207
Source0:        https://github.com/hynek/%{modname}/archive/%{version}/%{modname}-%{version}.tar.gz
170207
170207
BuildRequires:  python%{python3_pkgversion}-devel
170207
BuildRequires:  python%{python3_pkgversion}-rpm-macros
170207
BuildRequires:  python%{python3_pkgversion}-setuptools
170207
%if %{with tests}
170207
BuildRequires:  python%{python3_pkgversion}-pytest
170207
BuildRequires:  python%{python3_pkgversion}-hypothesis
170207
BuildRequires:  python%{python3_pkgversion}-six
170207
BuildRequires:  python%{python3_pkgversion}-zope-interface
170207
%endif
170207
170207
170207
%description -n python%{python3_pkgversion}-%{modname}
170207
attrs is an MIT-licensed Python package with class decorators that
170207
ease the chores of implementing the most common attribute-related
170207
object protocols.
170207
170207
%prep
170207
%setup -q -n %{modname}-%{version}
170207
170207
%build
170207
%py3_build
170207
170207
%install
170207
%py3_install
170207
170207
%if %{with tests}
170207
%check
170207
PYTHONPATH=%{buildroot}/%{python3_sitelib} py.test-%{python3_pkgversion} -v
170207
%endif
170207
170207
%files
170207
%license LICENSE
170207
%doc AUTHORS.rst README.rst
170207
%{python3_sitelib}/*
170207
170207
%changelog
170207
* Wed Oct 19 2022 Charalampos Stratakis <cstratak@redhat.com> - 22.1.0-1
170207
- Initial package
170207
- Fedora contributions by:
170207
      Lumir Balhar <lbalhar@redhat.com>
170207
      Miro HronĨok <miro@hroncok.cz>
170207
      Tomas Hrnciar <thrnciar@redhat.com>