about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyuv-external-libuv.patch
blob: 33539d9b4b2c8b375a07eff98c09602d2371f1d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
diff --git a/setup.py b/setup.py
index ec0caac..2c1fdb6 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,6 @@ try:
     from setuptools import setup, Extension
 except ImportError:
     from distutils.core import setup, Extension
-from setup_libuv import libuv_build_ext, libuv_sdist
 
 
 __version__ = "0.11.5"
@@ -32,12 +31,11 @@ setup(name             = "pyuv",
           "Programming Language :: Python :: 3.3",
           "Programming Language :: Python :: 3.4"
       ],
-      cmdclass     = {'build_ext': libuv_build_ext,
-                      'sdist'    : libuv_sdist},
       ext_modules  = [Extension('pyuv',
                                 sources = ['src/pyuv.c'],
+                                libraries = ['uv'],
                                 define_macros=[('MODULE_VERSION', __version__),
-                                               ('LIBUV_REVISION', libuv_build_ext.libuv_revision)]
+                                               ('LIBUV_REVISION', 'unknown')]
                      )]
      )