pythonPackages.funcparserlib: fix test runner, disable python 3.x

This commit is contained in:
Frederik Rietdijk 2016-01-24 10:25:06 +01:00
parent 9441311e93
commit 7beace29af

View file

@ -5153,6 +5153,13 @@ in modules // {
md5 = "3aba546bdad5d0826596910551ce37c0";
};
checkPhase = ''
${python.interpreter} -m unittest discover
'';
# Judging from SyntaxError in tests.
disabled = isPy3k;
meta = {
description = "Recursive descent parsing library based on functional combinators";
homepage = https://code.google.com/p/funcparserlib/;