Files
nixpkgs/pkgs/development/python-modules/pyuv-external-libuv.patch
T

26 lines
799 B
Diff
Raw Normal View History

2014-08-20 22:03:28 +02:00
diff --git a/setup.py b/setup.py
2016-04-27 12:25:22 +02:00
index 5071c3b..4b4a176 100644
2014-08-20 22:03:28 +02:00
--- a/setup.py
+++ b/setup.py
2016-04-27 12:25:22 +02:00
@@ -7,7 +7,6 @@ try:
2014-08-20 22:03:28 +02:00
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
-from setup_libuv import libuv_build_ext, libuv_sdist
2016-04-27 12:25:22 +02:00
def get_version():
@@ -35,11 +34,10 @@ setup(name = "pyuv",
2014-08-20 22:03:28 +02:00
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"
],
- cmdclass = {'build_ext': libuv_build_ext,
- 'sdist' : libuv_sdist},
2016-04-27 12:25:22 +02:00
packages = ['pyuv'],
ext_modules = [Extension('pyuv._cpyuv',
2014-08-20 22:03:28 +02:00
sources = ['src/pyuv.c'],
2016-04-27 12:25:22 +02:00
+ libraries = ['uv']
2014-08-20 22:03:28 +02:00
)]
)
2016-04-27 12:25:22 +02:00