* Add horizontal lines to create sections within a table (#185) @myheroyuki * Declare support for Python 3.12 (#231) @hugovk * Rename licence file for detection by GitHub (#229) @hugovk * Rename master to main (#228) @hugovk - 3.6.0: * Updated pre-commit with mypy (#218) @phershbe * Test Python 3.12 pre-releases (#221) @hugovk * Fix to min_table_width parameter (#219) @kzwolenik95 * Widen tables with long titles (#216) @etjones OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-prettytable?expand=0&rev=21
78 lines
2.6 KiB
RPMSpec
78 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-prettytable
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
# Copyright (c) 2011 Christian Berendt.
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define skip_python2 1
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-prettytable
|
|
Version: 3.7.0
|
|
Release: 0
|
|
Summary: Library for displaying tabular data in formatted fashion
|
|
License: BSD-2-Clause
|
|
URL: https://github.com/jazzband/prettytable
|
|
Source0: https://files.pythonhosted.org/packages/source/p/prettytable/prettytable-%{version}.tar.gz
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module hatch_vcs}
|
|
BuildRequires: %{python_module hatchling}
|
|
BuildRequires: %{python_module importlib-metadata if %python-base < 3.8}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest-lazy-fixture}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module wcwidth}
|
|
BuildRequires: %{pythons}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
Requires: python-wcwidth
|
|
%if 0%{?python_version_nodots} < 38
|
|
Requires: python-importlib-metadata
|
|
%endif
|
|
Provides: python-PrettyTable = %{version}-%{release}
|
|
Obsoletes: python-PrettyTable < %{version}-%{release}
|
|
%python_subpackages
|
|
|
|
%description
|
|
PrettyTable is a Python library for representing tabular data in
|
|
ASCII tables, inspired by the tables emitted by the PostgreSQL shell,
|
|
psql. PrettyTable allows for selection of which columns are to be
|
|
printed, independent alignment of columns (left or right justified or
|
|
centred) and printing of "sub-tables" by specifying a row range.
|
|
|
|
%prep
|
|
%setup -q -n prettytable-%{version}
|
|
sed -i '1 {/env python/d}' src/prettytable/prettytable.py
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export LANG=en_US.UTF-8
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc CHANGELOG.md README.md
|
|
%{python_sitelib}/prettytable
|
|
%{python_sitelib}/prettytable-%{version}*-info
|
|
|
|
%changelog
|