tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
urlscan: 0.9.6 -> 0.9.7
Fabian Affolter
4 years ago
c15eb672
80d606ef
+12
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
urlscan
default.nix
+12
-5
pkgs/applications/misc/urlscan/default.nix
···
1
1
-
{ lib, python3Packages, fetchFromGitHub }:
1
1
+
{ lib
2
2
+
, python3Packages
3
3
+
, fetchFromGitHub
4
4
+
}:
2
5
3
6
python3Packages.buildPythonApplication rec {
4
7
pname = "urlscan";
5
5
-
version = "0.9.6";
8
8
+
version = "0.9.7";
6
9
7
10
src = fetchFromGitHub {
8
11
owner = "firecat53";
9
12
repo = pname;
10
13
rev = version;
11
11
-
sha256 = "D+WJ1HG1gXIFtIpaqazFqC9Y4GBCUsz88U8q8W9tHFA=";
14
14
+
sha256 = "sha256-Wg1QecSMyifID9uIvVWrmkHax4FbbwEcoXIZ8V8P3FU=";
12
15
};
13
16
14
14
-
propagatedBuildInputs = [ python3Packages.urwid ];
17
17
+
propagatedBuildInputs = [
18
18
+
python3Packages.urwid
19
19
+
];
15
20
16
21
doCheck = false; # No tests available
17
22
23
23
+
pythonImportsCheck = [ "urlscan" ];
24
24
+
18
25
meta = with lib; {
19
26
description = "Mutt and terminal url selector (similar to urlview)";
20
27
homepage = "https://github.com/firecat53/urlscan";
21
21
-
license = licenses.gpl2;
28
28
+
license = licenses.gpl2Plus;
22
29
maintainers = with maintainers; [ dpaetzel jfrankenau ];
23
30
};
24
31
}