%global pypi_name pendulum Name: python-%{pypi_name} Version: 2.0.5 Release: 2%{?dist} Summary: Python datetimes made easy License: MIT URL: https://pendulum.eustace.io Source0: %{pypi_source} BuildRequires: gcc %description Unlike other datetime libraries for Python, Pendulum is a drop-in replacement for the standard datetime class (it inherits from it), so, basically, you can replace all your datetime instances by DateTime instances in you code. It also removes the notion of naive datetimes: each Pendulum instance is timezone-aware and by default in UTC for ease of use. %package -n python%{python3_pkgversion}-%{pypi_name} Summary: %{summary} BuildRequires: python%{python3_pkgversion}-devel BuildRequires: python%{python3_pkgversion}-setuptools %description -n python%{python3_pkgversion}-%{pypi_name} Unlike other datetime libraries for Python, Pendulum is a drop-in replacement for the standard datetime class (it inherits from it), so, basically, you can replace all your datetime instances by DateTime instances in you code. It also removes the notion of naive datetimes: each Pendulum instance is timezone-aware and by default in UTC for ease of use. %prep %autosetup -n %{pypi_name}-%{version} %build %py3_build %install %py3_install %files -n python%{python3_pkgversion}-%{pypi_name} %license LICENSE %doc README.rst %{python3_sitearch}/%{pypi_name}/ %{python3_sitearch}/%{pypi_name}-%{version}-py*.egg-info %changelog * Tue Jan 21 2020 Fabian Affolter - 2.0.5-2 - Fix description (rhbz#1790074) * Tue Jan 07 2020 Fabian Affolter - 2.0.5-1 - Initial package for Fedora