summary refs log tree commit diff
path: root/pkgs
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
parente9dea3c02a39053d3e07083e9f3d1d2543b88531 (diff)
downloadnixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.tar
nixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.tar.gz
nixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.tar.bz2
nixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.tar.lz
nixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.tar.xz
nixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.tar.zst
nixpkgs-21eb4972bec03ecc0f0483fe00d9be335f9e476b.zip
pythonPackages.funcparserlib: build on Python 3.x
Diffstat (limited to 'pkgs')
-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 eb7422d43b2..d2e73fae907 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";