--- /dev/null
+Name: python3-more-itertools
+Summary: More routines for operating on iterables, beyond itertools
+Version: 5.0.0
+Release: 0
+License: MIT
+Group: Development/Languages/Python
+Source0: %{name}-%{version}.tar.gz
+Source1001: %{name}.manifest
+
+BuildRequires: pkgconfig(python3)
+BuildRequires: python3-setuptools
+
+BuildArch: noarch
+
+%description
+I love itertools; it's one of the most beautiful, composable standard libs.
+Whenever I have an iteration problem, there's almost always an itertools
+routine that fits it perfectly. Sometimes, however, neither itertools nor the
+recipes included in its docs do quite what I need.
+
+Here I've collected several routines I've reached for but not found. Since
+they are deceptively tricky to get right, I've wrapped them up into a library.
+We've also included implementations of the recipes from the itertools
+documentation. Enjoy! Any additions are welcome; just file a pull request.
+
+
+%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}/more_itertools-%{version}-py%{python3_version}.egg-info/*
+%{python3_sitelib}/more_itertools/*.py
+%{python3_sitelib}/more_itertools/__pycache__/*.cpython-*.pyc
+%{python3_sitelib}/more_itertools/tests/*.py
+%{python3_sitelib}/more_itertools/tests/__pycache__/*.cpython-*.pyc
+