15
0
forked from pool/python-apns2
Files
python-apns2/python-apns2.spec
Matej Cepl 150d3b0cde - Update to 0.7.2:
- Updated sandbox URL (#93)
  - Do not ignore custom JWT lifetime when using TokenCredentials
    (#108)
  - Fix determination of push type for empty notifications with
    badge 0 (#109)
  - LICENSE and test/eckey.pem included in source tarball (#110
    #111)
  - Changing DEFAULT_TOKEN_LIFETIME from 3600 to 2700 (#113)
  - Added upper constraint for PyJWT (<2.0.0)
- Removed additional sources as they were included in the
  upstream tarball.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apns2?expand=0&rev=4
2021-02-26 14:28:19 +00:00

68 lines
2.0 KiB
RPMSpec

#
# spec file for package python-apns2
#
# Copyright (c) 2021 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-%{**}}
%define skip_python2 1
Name: python-apns2
Version: 0.7.2
Release: 0
Summary: Python library for the HTTP/2 Apple Push Notification Service
License: MIT
Group: Development/Languages/Python
URL: https://github.com/Pr0Ger/PyAPNs2
Source0: https://files.pythonhosted.org/packages/source/a/apns2/apns2-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-PyJWT >= 1.4.0
Requires: python-cryptography >= 1.7.2
Requires: python-hyper >= 0.7
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module PyJWT >= 1.4.0}
BuildRequires: %{python_module cryptography >= 1.7.2}
BuildRequires: %{python_module freezegun}
BuildRequires: %{python_module hyper >= 0.7}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
A python library for interacting with the Apple Push Notification Service
via HTTP/2 protocol.
%prep
%autosetup -p1 -n apns2-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/*
%changelog