--- /dev/null
+Name: python3-pyparsing
+Version: 3.0.7
+Release: 0
+Summary: Grammar Parser Library for Python
+License: MIT
+Group: Development/Languages/Python
+Url: https://pypi.python.org/pypi/pyparsing
+Source: %{name}-%{version}.tar.gz
+Source1001: %{name}.manifest
+
+BuildRequires: pkgconfig(python3)
+BuildRequires: python3-setuptools
+
+BuildArch: noarch
+
+Provides: python3-parsing = %{version}
+Obsoletes: python3-parsing < %{version}
+
+%description
+The pyparsing module is an alternative approach to creating and executing
+simple grammars, vs. the traditional lex/yacc approach, or the use of regular
+expressions. The pyparsing module provides a library of classes that client
+code uses to construct the grammar directly in Python code.
+
+%prep
+%setup -q -n %{name}-%{version}
+cp %{SOURCE1001} .
+
+%build
+%{_bindir}/python3 setup.py build
+
+# Fix wrong EOL encoding:
+sed -i 's/\r$//' CHANGES LICENSE
+
+%install
+%{_bindir}/python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%remove_docs
+
+%files
+%manifest %{name}.manifest
+%license LICENSE
+%{python3_sitelib}/pyparsing/*
+%{python3_sitelib}/pyparsing-%{version}-py*.egg-info/
+
+%changelog