python-mistune/python-mistune.spec

68 lines
2.0 KiB
RPMSpec

#
# spec file for package python-mistune
#
# 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() python3-%{**}}
%define modname mistune
%define skip_python36 1
%if 0%{?suse_version} < 1550
%define skip_python2 1
%endif
Name: python-mistune
# Wait with the upgrade to 2.* when python-m2r is working
Version: 2.0.0
Release: 0
Summary: A markdown parser in pure Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/lepture/mistune
# Source0: https://files.pythonhosted.org/packages/source/m/mistune/mistune-%%{version}.tar.gz
Source: https://github.com/lepture/%{modname}/archive/refs/tags/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
A markdown parser in pure Python, inspired by marked.
%prep
%autosetup -p1 -n mistune-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%license LICENSE
%doc README.*
%{python_sitelib}/mistune
%dir %{python_sitelib}/mistune-%{version}.dist-info
%{python_sitelib}/mistune-%{version}.dist-info/*
%changelog