# # spec file for package python-python-utils # # Copyright (c) 2018 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 http://bugs.opensuse.org/ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-python-utils Version: 2.3.0 Release: 0 License: BSD-3-Clause Summary: Convenient utilities not included with the standard Python install Url: https://github.com/WoLpH/python-utils Group: Development/Languages/Python Source: https://files.pythonhosted.org/packages/source/p/python-utils/python-utils-%{version}.tar.gz BuildRequires: %{python_module devel} BuildRequires: %{python_module pytest-runner} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros # SECTION test requirements BuildRequires: %{python_module pytest} BuildRequires: %{python_module six} # /SECTION Requires: python-six BuildArch: noarch %python_subpackages %description Python Utils is a collection of small Python functions and classes which make common patterns shorter and easier. It is by no means a complete collection but it has served me quite a bit in the past and I will keep extending it. %prep %setup -q -n python-utils-%{version} %build %python_build %install %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %check # default test settings enable some pytest backends we don't care about mv pytest.ini old_pytest.ini_old %{python_expand rm -rf _build.* build tests/__pycache__ tests/*.pyc tests/*.pyo export PYTHONDONTWRITEBYTECODE=1 export PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} tests/*.py } mv old_pytest.ini_old pytest.ini %files %{python_files} %doc README.rst %license LICENSE %{python_sitelib}/* %changelog