From ea90815ae8aa3de5c0fca0e35bf398095eef0253 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Sep 2016 10:24:37 +0200 Subject: [PATCH] pythonPackages.pyparser: fix tests --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cffb0c02f2a5..29d332bc1b56 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4508,8 +4508,9 @@ in modules // { sha256 = "7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73"; }; - # 3.5 is not supported but has been working fine - doCheck = !isPy35; + checkPhase = '' + ${python.interpreter} -m unittest discover -s tests + ''; meta = { description = "C parser in Python";