--- /dev/null
+Name: python3-iso8601
+Summary: Simple module to parse ISO 8601 dates
+Version: 0.1.12
+Release: 0
+License: MIT
+Group: Development/Languages/Python
+Source0: %{name}-%{version}.tar.gz
+Source1001: %{name}.manifest
+
+
+BuildRequires: pkgconfig(python3)
+BuildRequires: python3-setuptools
+BuildRequires: python3-pytest
+
+BuildArch: noarch
+
+%description
+Simple module to parse ISO 8601 dates
+
+This module parses the most common forms of ISO 8601 date strings (e.g.
+2007-01-14T20:34:22+00:00) into datetime objects.
+
+
+%prep
+%setup -q
+cp %{SOURCE1001} .
+
+%build
+%{_bindir}/python3 setup.py build
+
+%install
+%{_bindir}/python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
+
+%clean
+
+%files
+%manifest %{name}.manifest
+%license LICENSE
+%{python3_sitelib}/iso8601-%{version}-py%{python3_version}.egg-info/*
+%{python3_sitelib}/iso8601/*.py
+%{python3_sitelib}/iso8601/__pycache__/*.cpython-*.pyc
+
+
+