Files
python-dotmap/python-dotmap.spec
Dirk Mueller 792737e455 Accepting request 1006500 from home:yarunachalam:branches:devel:languages:python
- update to 1.3.30 
  * apply _key_convert_hook to nested fields (#90)
  * add key convert hook (#89)
  * Revert "fix issue #85 (#86)" (#88)
  * Fix indent (#87)
  * fix issue #85 (#86)
  * fix issue #85
    Handle keys with dashes/dots by replacing them with underlines
    * fix typo

OBS-URL: https://build.opensuse.org/request/show/1006500
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dotmap?expand=0&rev=10
2022-09-27 19:36:52 +00:00

55 lines
1.5 KiB
RPMSpec

#
# spec file for package python-dotmap
#
# Copyright (c) 2022 SUSE LLC
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-dotmap
Version: 1.3.30
Release: 0
Summary: Python ordered, dynamically-expandable dot-access dictionary
License: MIT
URL: https://github.com/drgrib/dotmap
Source: https://files.pythonhosted.org/packages/source/d/dotmap/dotmap-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Python ordered, dynamically-expandable dot-access dictionary.
%prep
%setup -q -n dotmap-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pyunittest -v dotmap.test
%files %{python_files}
%doc README.md
%license LICENSE.txt
%{python_sitelib}/*
%changelog