summary refs log tree commit diff
diff options
context:
space:
mode:
authorUli Baum <xeji@cat3.de>2018-10-29 23:44:34 +0100
committerUli Baum <xeji@cat3.de>2018-10-29 23:44:34 +0100
commite1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96 (patch)
treec908db02995e5b9c99c78cf78a648c3b6b447eed
parent5ae13d48d26d65522a2af3027619abecc1d15015 (diff)
downloadnixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.tar
nixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.tar.gz
nixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.tar.bz2
nixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.tar.lz
nixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.tar.xz
nixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.tar.zst
nixlib-e1ff8dc5dfdf39f1cb411fe4274b74ef8c85fa96.zip
pythonPackages.django_classytags: clarify why tests are disabled
-rw-r--r--pkgs/development/python-modules/django_classytags/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/django_classytags/default.nix b/pkgs/development/python-modules/django_classytags/default.nix
index 3de7412462b8..d3ed0fd18410 100644
--- a/pkgs/development/python-modules/django_classytags/default.nix
+++ b/pkgs/development/python-modules/django_classytags/default.nix
@@ -15,8 +15,8 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ django ];
 
-  # tests appear to be broken on 0.8.0 at least
-  doCheck = ( version != "0.8.0" );
+  # pypi version doesn't include runtest.py, needed to run tests
+  doCheck = false;
 
   meta = with stdenv.lib; {
     description = "Class based template tags for Django";