%global pypi_name django-crispy-forms Name: python-%{pypi_name} Version: 1.7.2 Release: 2%{?dist} Summary: Best way to have Django DRY forms License: MIT URL: http://pypi.python.org/pypi/%{pypi_name}/%{version} Source0: https://pypi.python.org/packages/source/d/%{pypi_name}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch BuildRequires: python3-devel BuildRequires: python3-setuptools Requires: python3-django Requires: python3-coverage Requires: python3-pytest-cov Requires: python3-wheel Requires: python3-twine Requires: python3-pytest %description The best way to have Django DRY forms. Build programmatic reusable layouts out of components, having full control of the rendered HTML without writing HTML in templates. All this without breaking the standard way of doing things in Django, so it plays nice with any other form application. %package -n python3-%{pypi_name} Summary: %{summary} - Python 3 version %{?python_provide:%python_provide python3-%{pypi_name}} %description -n python3-%{pypi_name} The best way to have Django DRY forms. Build programmatic reusable layouts out of components, having full control of the rendered HTML without writing HTML in templates. All this without breaking the standard way of doing things in Django, so it plays nice with any other form application. %prep %setup -q -n %{pypi_name}-%{version} %build %py3_build %install %py3_install %files -n python3-%{pypi_name} %license LICENSE.txt %doc README.rst %{python3_sitelib}/crispy_forms/ %{python3_sitelib}/django_crispy_forms-*.egg-info %changelog * Tue Jul 03 2018 Luis Bazan - 1.7.2-2 - Fix comments in BZ#1597397 * Mon Jul 02 2018 Luis Bazan - 1.7.2-1 - New upstream