File python-PyJWT.spec of Package python-PyJWT.26294
#
# spec file for package python-PyJWT
#
# Copyright (c) 2017 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-PyJWT
Version: 1.5.3
Release: 0
Summary: JSON Web Token implementation in Python
License: MIT
Group: Development/Languages/Python
Url: https://github.com/progrium/pyjwt
Source: https://files.pythonhosted.org/packages/source/P/PyJWT/PyJWT-%{version}.tar.gz
# PATCH-FIX-SLE CVE-2022-29217-non-blocked-pubkeys.patch bsc#1199756 mcepl@suse.com
# Disallows use of blocked pubkeys (heavily modified from upstream)
Patch0: CVE-2022-29217-non-blocked-pubkeys.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: %{python_module cryptography}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pytest-cov >= 1.7}
BuildRequires: %{python_module pytest-runner}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: dos2unix
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-cryptography
Requires: python-ecdsa
Requires: python-setuptools
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%python_subpackages
%description
A Python implementation of JSON Web Token draft 01.
%prep
%autosetup -p1 -n PyJWT-%{version}
dos2unix jwt/__main__.py
%build
%python_build
#remove shebang from all non executable files
find ./ -type f -name "*.py" -perm 644 -exec sed -i -e '1{\@^#!/usr/bin/env python@d}' {} \;
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/pyjwt
#hardlink duplicated files
%fdupes %{buildroot}
%post
%python_install_alternative pyjwt
%postun
%python_uninstall_alternative pyjwt
%check
%{python_expand PYTHONPATH=%{buildroot}%{python_sitelib} py.test-%{py_ver} -k "not test_verify_false_deprecated" }
%files %python_files
%defattr(-,root,root,-)
%license LICENSE
%doc AUTHORS CHANGELOG.md README.rst
%{python_sitelib}/*
%python_alternative %{_bindir}/pyjwt
%changelog