python3Packages.neovim: include trollius only for py < 3.4

trollius breaks python3 because it includes the enum module
This commit is contained in:
Jörg Thalheim
2016-10-12 20:56:58 +02:00
parent bfc1ec2807
commit da32d7ea85
+1 -1
View File
@@ -28828,7 +28828,7 @@ in modules // {
propagatedBuildInputs = with self; [ msgpack ] propagatedBuildInputs = with self; [ msgpack ]
++ optional (!isPyPy) greenlet ++ optional (!isPyPy) greenlet
++ optional (!isPy34) trollius; ++ optional (pythonOlder "3.4") trollius;
meta = { meta = {
description = "Python client for Neovim"; description = "Python client for Neovim";