urlscan: init at 0.8.3
This commit is contained in:
committed by
Michael Raskin
parent
88d61cce28
commit
3414470d9d
@@ -0,0 +1,25 @@
|
||||
{ stdenv, buildPythonPackage, isPy35, fetchFromGitHub, urwid }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "urlscan-${version}";
|
||||
version = "0.8.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "firecat53";
|
||||
repo = "urlscan";
|
||||
rev = version;
|
||||
# (equivalent but less nice(?): rev = "00333f6d03bf3151c9884ec778715fc605f58cc5")
|
||||
sha256 = "0l40anfznam4d3q0q0jp2wwfrvfypz9ppbpjyzjdrhb3r2nizb0y";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ urwid ];
|
||||
|
||||
# FIXME doesn't work with 2.7; others than 2.7 and 3.5 were not tested (yet)
|
||||
disabled = ! isPy35;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Mutt and terminal url selector (similar to urlview)";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.dpaetzel ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user