urlscan: 0.9.6 -> 0.9.7

This commit is contained in:
Fabian Affolter 2021-10-12 09:37:14 +02:00
parent 80d606efb7
commit c15eb6722d

View File

@ -1,24 +1,31 @@
{ lib, python3Packages, fetchFromGitHub }: { lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "urlscan"; pname = "urlscan";
version = "0.9.6"; version = "0.9.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "firecat53"; owner = "firecat53";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "D+WJ1HG1gXIFtIpaqazFqC9Y4GBCUsz88U8q8W9tHFA="; sha256 = "sha256-Wg1QecSMyifID9uIvVWrmkHax4FbbwEcoXIZ8V8P3FU=";
}; };
propagatedBuildInputs = [ python3Packages.urwid ]; propagatedBuildInputs = [
python3Packages.urwid
];
doCheck = false; # No tests available doCheck = false; # No tests available
pythonImportsCheck = [ "urlscan" ];
meta = with lib; { meta = with lib; {
description = "Mutt and terminal url selector (similar to urlview)"; description = "Mutt and terminal url selector (similar to urlview)";
homepage = "https://github.com/firecat53/urlscan"; homepage = "https://github.com/firecat53/urlscan";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = with maintainers; [ dpaetzel jfrankenau ]; maintainers = with maintainers; [ dpaetzel jfrankenau ];
}; };
} }