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-07-29 19:47:14 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-07-29 19:48:11 +0200
commit06f6c1426be06cd87e16381f834370ec9ec16fa9 (patch)
tree40d46331270608428c4d1b4d0b25372ac455999a /pkgs/top-level/python-packages.nix
parent3673454e533ca0abeb06d4f8ab39a2146e140baf (diff)
downloadnixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.tar
nixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.tar.gz
nixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.tar.bz2
nixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.tar.lz
nixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.tar.xz
nixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.tar.zst
nixlib-06f6c1426be06cd87e16381f834370ec9ec16fa9.zip
pythonPackages.pystache: disable tests on Python 3
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index b90a6947a584..a710baa91fa8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -18797,7 +18797,7 @@ in modules // {
 
     # SyntaxError Python 3
     # https://github.com/defunkt/pystache/issues/181
-    disabled = isPy3k;
+    doCheck = !isPy3k;
 
     meta = {
       description = "A framework-agnostic, logic-free templating system inspired by ctemplate and et";