summary refs log tree commit diff
path: root/pkgs/applications/misc/urlscan
diff options
context:
space:
mode:
authorJohannes Frankenau <johannes@frankenau.net>2017-07-04 08:31:36 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-07-04 09:31:36 +0200
commit063f110e179c778dfcbfbd8a3008c17e67066d3a (patch)
tree7d018d5e286209545ed716a56528bac2b1e94089 /pkgs/applications/misc/urlscan
parent7e86d0e539532adb137fc13b0fc842faff5fd9c6 (diff)
downloadnixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.tar
nixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.tar.gz
nixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.tar.bz2
nixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.tar.lz
nixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.tar.xz
nixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.tar.zst
nixpkgs-063f110e179c778dfcbfbd8a3008c17e67066d3a.zip
urlscan: 0.8.3 -> 0.8.6 (#27102)
* urlscan: 0.8.3 -> 0.8.6

Moved from python-packages.nix to all-packages.nix because this is not
a Python library but just a Python application.

* Update default.nix

* Update all-packages.nix

* Update default.nix

* Update all-packages.nix
Diffstat (limited to 'pkgs/applications/misc/urlscan')
-rw-r--r--pkgs/applications/misc/urlscan/default.nix16
1 files changed, 6 insertions, 10 deletions
diff --git a/pkgs/applications/misc/urlscan/default.nix b/pkgs/applications/misc/urlscan/default.nix
index dc9cb3189d5..7c4def95210 100644
--- a/pkgs/applications/misc/urlscan/default.nix
+++ b/pkgs/applications/misc/urlscan/default.nix
@@ -1,25 +1,21 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, urwid, pythonOlder }:
+{ stdenv, python3Packages, fetchFromGitHub }:
 
-buildPythonPackage rec {
+python3Packages.buildPythonApplication rec {
   name = "urlscan-${version}";
-  version = "0.8.3";
+  version = "0.8.6";
 
   src = fetchFromGitHub {
     owner = "firecat53";
     repo = "urlscan";
     rev = version;
-    # (equivalent but less nice(?): rev = "00333f6d03bf3151c9884ec778715fc605f58cc5")
-    sha256 = "0l40anfznam4d3q0q0jp2wwfrvfypz9ppbpjyzjdrhb3r2nizb0y";
+    sha256 = "1v26fni64n0lbv37m35plh2bsrvhpb4ibgmg2mv05qfc3df721s5";
   };
 
-  propagatedBuildInputs = [ urwid ];
-
-  # FIXME doesn't work with 2.7; others than 2.7 and 3.5 were not tested (yet)
-  disabled = !pythonOlder "3.5";
+  propagatedBuildInputs = [ python3Packages.urwid ];
 
   meta = with stdenv.lib; {
     description = "Mutt and terminal url selector (similar to urlview)";
     license = licenses.gpl2;
-    maintainers = [ maintainers.dpaetzel ];
+    maintainers = with maintainers; [ dpaetzel jfrankenau ];
   };
 }