about summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-08-30 10:53:57 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-08-30 12:06:18 +0200
commit21eb4972bec03ecc0f0483fe00d9be335f9e476b (patch)
tree7f09b1bf793525b940fc837c0928a834146461eb /pkgs/top-level/python-packages.nix
parente9dea3c02a39053d3e07083e9f3d1d2543b88531 (diff)
pythonPackages.funcparserlib: build on Python 3.x
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index eb7422d43b2cb..d2e73fae907b0 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6331,8 +6331,8 @@ in modules // {
       ${python.interpreter} -m unittest discover
     '';
 
-    # Judging from SyntaxError in tests.
-    disabled = isPy3k;
+    # Tests are Python 2.x only judging from SyntaxError
+    doCheck = !(isPy3k);
 
     meta = {
       description = "Recursive descent parsing library based on functional combinators";