15
0
Files
python-holidays/python-holidays.spec
Tomáš Chvátal f368a34010 Accepting request 765222 from home:alarrosa:branches:devel:languages:python
- Update to 0.9.12:
  * Support for Nigeria (ioluwayo)
  * Support for India - Telangana (kiranbeethoju, dr-p)
  * Support for Dominican Republic (gabmartinez)
  * Support for Nicaragua (CARocha)
  * Code refactoring, bugfixes (vlt)
  * Add method to list all supported countries (fabaff)
  * Germany bugfixes (bitraten)
  * Correctly handle United Kingdom "May Day" holiday in 2020 - #219 (robfraz)
  * Hungary fixes (gypapp)
  * Chile test fixes (rpanai)
  * Italy fixes (jokerigno, sixbladeknife)
  * Other minor fixes

OBS-URL: https://build.opensuse.org/request/show/765222
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-holidays?expand=0&rev=10
2020-01-17 12:01:45 +00:00

61 lines
1.9 KiB
RPMSpec

#
# spec file for package python-holidays
#
# Copyright (c) 2020 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-holidays
Version: 0.9.12
Release: 0
Summary: Python library for generating holidays on the fly
License: MIT
Group: Development/Languages/Python
URL: https://github.com/dr-prodigy/python-holidays
Source: https://files.pythonhosted.org/packages/source/h/holidays/holidays-%{version}.tar.gz
BuildRequires: %{python_module python-dateutil}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-python-dateutil
Requires: python-six
BuildArch: noarch
%python_subpackages
%description
A Python library for generating country, province and state specific sets of holidays on the fly.
It makes determining whether a specific date is a holiday possible.
%prep
%setup -q -n holidays-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand $python -m unittest discover
%files %{python_files}
%license LICENSE
%doc CHANGES README.rst
%{python_sitelib}/*
%changelog