Index: branches/fc20-dev/server/fedora/Makefile
===================================================================
--- branches/fc20-dev/server/fedora/Makefile	(revision 2586)
+++ branches/fc20-dev/server/fedora/Makefile	(revision 2587)
@@ -24,5 +24,6 @@
 gems		= pony:1.8 fcgi:0.9.2.1
 upstream_gems	= rubygem-pony rubygem-fcgi
-upstream	= openafs $(upstream_yum) $(upstream_hackage) $(upstream_gems) moira zephyr zephyr.i686 python-zephyr python-afs python-moira python-hesiod athena-aclocal discuss
+upstream_eggs   = python-authkit
+upstream	= openafs $(upstream_yum) $(upstream_hackage) $(upstream_gems) $(upstream_eggs) moira zephyr zephyr.i686 python-zephyr python-afs python-moira python-hesiod athena-aclocal discuss
 oursrc		= execsys tokensys accountadm httpdmods logview sql-signup nss_nonlocal nss_nonlocal.i686 whoisd athrun php_scripts scripts-wizard scripts-base scripts-static-cat fuse-better-mousetrapfs scripts-munin-plugins
 allsrc		= $(upstream) $(oursrc)
@@ -80,4 +81,5 @@
 	spectool -g -R $(specs)/python-moira.spec
 	spectool -g -R $(specs)/python-hesiod.spec
+	spectool -g -R $(specs)/python-authkit.spec
 	touch download_stamp
 
Index: branches/fc20-dev/server/fedora/specs/python-authkit.spec
===================================================================
--- branches/fc20-dev/server/fedora/specs/python-authkit.spec	(revision 2587)
+++ branches/fc20-dev/server/fedora/specs/python-authkit.spec	(revision 2587)
@@ -0,0 +1,52 @@
+# sitelib for noarch packages, sitearch for others (remove the unneeded one)
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
+
+Name:		python-authkit
+Version:	0.4.5
+Release:	1%{?dist}
+Summary:	An authentication and authorization toolkit for WSGI applications and frameworks
+
+License:	MIT
+URL:		https://pypi.python.org/pypi/AuthKit/0.4.5
+Source0:	https://pypi.python.org/packages/source/A/AuthKit/AuthKit-0.4.5.tar.gz
+
+BuildArch:	noarch
+
+BuildRequires:	python-setuptools
+BuildRequires:	python2-devel
+
+%description
+* Built for WSGI applications and middleware
+* Sophisticated and extensible permissions system
+* Built in support for HTTP basic, HTTP digest, form, cookie and
+  OpenID authentication methods plus others
+* Easily define users, passwords and roles
+* Designed to be totally extensible so you can use the components to
+  integrate with a database, LDAP connection or your own custom system
+* Plays nicely with the Pylons web framework
+
+
+%prep
+%setup -q -n AuthKit-%{version}
+
+
+%build
+# Remove CFLAGS=... for noarch packages (unneeded)
+CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+ 
+%files
+%doc
+# For noarch packages: sitelib
+%{python_sitelib}/*
+
+
+%changelog
+* Thu Aug 28 2014 Alex Chernyakhovsky <achernya@mit.edu> - 0.4.5-1
+- Initial packaging.
