Merge pull request #10690 from FRidh/llvmlite

python llmvlite: enum34 also for python 3.5
This commit is contained in:
Domen Kožar 2015-10-29 10:15:05 +01:00
commit 8c0e488f51

View File

@ -8337,7 +8337,7 @@ let
llvm = pkgs.llvm;
propagatedBuildInputs = with self; [ llvm ] ++ optional (!isPy34) enum34;
propagatedBuildInputs = with self; [ llvm ] ++ optional (pythonOlder "3.4") enum34;
# Disable static linking
# https://github.com/numba/llvmlite/issues/93