summary refs log tree commit diff
path: root/pkgs/applications/misc/urlscan
diff options
context:
space:
mode:
authorDavid Pätzel <david.a.paetzel+github@gmail.com>2016-10-23 23:13:36 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-12-28 12:13:36 +0100
commit2d38cad288207e1f8eb27d1ddea097e58a621e01 (patch)
tree9c7bb784533a0517f63cf64e7431ea814a1017a5 /pkgs/applications/misc/urlscan
parent3414470d9d3ec273bfe255abef6c92febff308b3 (diff)
downloadnixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.tar
nixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.tar.gz
nixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.tar.bz2
nixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.tar.lz
nixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.tar.xz
nixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.tar.zst
nixpkgs-2d38cad288207e1f8eb27d1ddea097e58a621e01.zip
enhance python version check
Diffstat (limited to 'pkgs/applications/misc/urlscan')
-rw-r--r--pkgs/applications/misc/urlscan/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/urlscan/default.nix b/pkgs/applications/misc/urlscan/default.nix
index 2d01d203ba1..b686c4ba9c4 100644
--- a/pkgs/applications/misc/urlscan/default.nix
+++ b/pkgs/applications/misc/urlscan/default.nix
@@ -15,7 +15,7 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ urwid ];
 
   # FIXME doesn't work with 2.7; others than 2.7 and 3.5 were not tested (yet)
-  disabled = ! isPy35;
+  disabled = !pythonOlder "3.5";
 
   meta = with stdenv.lib; {
     description = "Mutt and terminal url selector (similar to urlview)";