File python-namedlist.spec of Package python-namedlist
#
# spec file for package python-namedlist
#
# Copyright (c) 2019 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-namedlist
Version: 1.7
Release: 0
License: Apache-2.0
Summary: Similar to namedtuple, but instances are mutable
Url: https://bitbucket.org/ericvsmith/namedlist
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/n/namedlist/namedlist-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildArch: noarch
%python_subpackages
%description
===========
namedlist
===========
Overview
========
namedlist provides 2 factory functions, namedlist.namedlist and
namedlist.namedtuple. namedlist.namedtuple is similar to
collections.namedtuple, with the following differences:
* namedlist.namedtuple supports per-field default values.
* namedlist.namedtuple supports an optional default value, to be used
by all fields that do not have an explicit default value.
namedlist.namedlist is similar, with this additional difference:
* namedlist.namedlist instances are mutable.
%prep
%setup -q -n namedlist-%{version}
# docs are executable - fixing with chmod -x
chmod -x *txt
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# upstream bug - no __init__.py in test folder
touch test/__init__.py
%python_exec setup.py test
%files %{python_files}
%doc README.txt
%license LICENSE.txt
%{python_sitelib}/*
%changelog