Index: python-scrypt-0.6.1/setup.py
===================================================================
--- python-scrypt-0.6.1.orig/setup.py	2013-07-04 11:34:40.932491443 -0400
+++ python-scrypt-0.6.1/setup.py	2013-07-04 11:36:52.640893891 -0400
@@ -65,25 +65,6 @@
                      ('HAVE_SYSCTL_HW_USERMEM', '1')]
     libraries = ['crypto']
 
-scrypt_module = Extension('_scrypt',
-                          sources=['src/scrypt.c',
-                                   'scrypt-1.1.6/lib/crypto/crypto_aesctr.c',
-                                   'scrypt-1.1.6/lib/crypto/crypto_scrypt-nosse.c',
-                                   'scrypt-1.1.6/lib/crypto/sha256.c',
-                                   'scrypt-1.1.6/lib/scryptenc/scryptenc.c',
-                                   'scrypt-1.1.6/lib/scryptenc/scryptenc_cpuperf.c',
-                                   'scrypt-1.1.6/lib/util/memlimit.c',
-                                   'scrypt-1.1.6/lib/util/warn.c'],
-                          include_dirs=['scrypt-1.1.6',
-                                        'scrypt-1.1.6/lib',
-                                        'scrypt-1.1.6/lib/scryptenc',
-                                        'scrypt-1.1.6/lib/crypto',
-                                        'scrypt-1.1.6/lib/util'] + includes,
-                          define_macros=[('HAVE_CONFIG_H', None)] + define_macros,
-                          extra_compile_args=CFLAGS,
-                          library_dirs=library_dirs,
-                          libraries=libraries)
-
 setup(name='scrypt',
       version='0.6.1',
       description='Bindings for the scrypt key derivation function library',
@@ -91,7 +72,6 @@
       author_email='mhallin@gmail.com',
       url='http://bitbucket.org/mhallin/py-scrypt',
       py_modules=['scrypt'],
-      ext_modules=[scrypt_module],
       classifiers=['Development Status :: 4 - Beta',
                    'Intended Audience :: Developers',
                    'License :: OSI Approved :: BSD License',
