Index: peachpy-0.2.0~git20171207.311c1f6/requirements.txt
===================================================================
--- peachpy-0.2.0~git20171207.311c1f6.orig/requirements.txt
+++ peachpy-0.2.0~git20171207.311c1f6/requirements.txt
@@ -1,3 +1,3 @@
 Opcodes>=0.3.13
 six
-enum34
+enum34; python_version < '3.4'
Index: peachpy-0.2.0~git20171207.311c1f6/setup.py
===================================================================
--- peachpy-0.2.0~git20171207.311c1f6.orig/setup.py
+++ peachpy-0.2.0~git20171207.311c1f6/setup.py
@@ -1,11 +1,17 @@
 #!/usr/bin/env python
 
+import sys
 import distutils.log
 from distutils.command.build import build
 from setuptools.command.develop import develop
 from distutils.cmd import Command
 from setuptools import setup
 
+if sys.version_info < (3 , 4):
+    REQUIRES = ['six', 'enum34']
+else:
+    REQUIRES = ['six']
+
 def read_text_file(path):
     import os
     with open(os.path.join(os.path.dirname(__file__), path)) as f:
@@ -88,7 +94,7 @@ setup(
         "Topic :: Software Development :: Libraries"
         ],
     setup_requires=["Opcodes>=0.3.13", "six"],
-    install_requires=["six", "enum34"],
+    install_requires=REQUIRES,
     cmdclass={
         "build": BuildGenerateInstructions,
         "develop": DevelopGenerateInstructions,
