File hide_py_pckgmgmt.patch of Package python-docker-py.17760
diff -Nur docker-py-1.3.1/setup.py docker-py-1.3.1.patched/setup.py
--- docker-py-1.3.1/setup.py 2015-07-22 23:20:30.000000000 +0200
+++ docker-py-1.3.1.patched/setup.py 2015-07-23 12:52:14.075767499 +0200
@@ -14,9 +14,10 @@
exec(open('docker/version.py').read())
-with open('./test-requirements.txt') as test_reqs_txt:
- test_requirements = [line for line in test_reqs_txt]
-
+# with open('./test-requirements.txt') as test_reqs_txt:
+# test_requirements = [line for line in test_reqs_txt]
+requirements = []
+test_requirements = []
setup(
name="docker-py",