tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
i3a: 2.0.1 -> 2.1.1
Austin Horstman
2 years ago
1fec95c3
43eec871
+4
-8
1 changed file
expand all
collapse all
unified
split
pkgs
misc
i3a
default.nix
+4
-8
pkgs/misc/i3a/default.nix
reviewed
···
2
2
3
3
python3Packages.buildPythonApplication rec {
4
4
pname = "i3a";
5
5
-
version = "2.0.1";
5
5
+
version = "2.1.1";
6
6
7
7
src = fetchPypi {
8
8
inherit pname version;
9
9
-
hash = "sha256-2k1HYtgJ76qXLvX6RmOSKtMMg+K722n8U9YmBANvQvE=";
9
9
+
hash = "sha256-b1bB7Gto4aL1rbQXIelBVhutjIvZY+K+Y66BGN7OcCs=";
10
10
};
11
11
12
12
-
postPatch = ''
13
13
-
substituteInPlace setup.py \
14
14
-
--replace "python_requires='>=3.7,<3.10'," "python_requires='>=3.7',"
15
15
-
'';
16
16
-
17
12
nativeBuildInputs = [ python3Packages.setuptools-scm ];
18
13
19
14
propagatedBuildInputs = [ python3Packages.i3ipc ];
···
21
16
doCheck = false;
22
17
23
18
meta = with lib; {
24
24
-
homepage = "https://git.goral.net.pl/mgoral/i3a";
19
19
+
changelog = "https://git.goral.net.pl/i3a.git/log/";
25
20
description = "A set of scripts used for automation of i3 and sway window manager layouts";
21
21
+
homepage = "https://git.goral.net.pl/i3a.git/about";
26
22
license = licenses.gpl3Plus;
27
23
maintainers = with maintainers; [ moni ];
28
24
};