--- /dev/null
+%define srcname Markdown
+
+Name: python3-markdown
+Version: 3.5.1
+Release: 1
+Summary: Markdown implementation in Python3
+Group: Development/Languages
+License: BSD
+URL: http://www.freewisdom.org/projects/python-markdown/
+Source0: %{srcname}-%{version}.tar.gz
+Source1001: python3-markdown.manifest
+Source1002: Markdown-3.5.1-py3-none-any.whl
+
+BuildRequires: python3-devel
+BuildRequires: python3-pip
+
+BuildArch: noarch
+
+%description
+This is a Python3 implementation of John Gruber's Markdown. It is
+almost completely compliant with the reference implementation, though
+there are a few known issues.
+
+
+%prep
+%setup -q -n %{srcname}-%{version}
+
+%build
+cp %{SOURCE1001} .
+
+
+%install
+%{_bindir}/python3 -m pip install --root %{buildroot} %{SOURCE1002}
+
+
+%files
+%manifest %{name}.manifest
+%{python3_sitelib}/markdown/*.py
+%{python3_sitelib}/markdown/__pycache__/*
+%{python3_sitelib}/markdown/extensions/*
+%{python3_sitelib}/Markdown-%{version}.dist-info/*
+%{_bindir}/markdown_py
+