i3a: 2.0.1 -> 2.1.1

This commit is contained in:
Austin Horstman 2024-01-07 18:46:46 -06:00
parent 43eec87119
commit 1fec95c310
No known key found for this signature in database
1 changed files with 4 additions and 8 deletions

View File

@ -2,18 +2,13 @@
python3Packages.buildPythonApplication rec {
pname = "i3a";
version = "2.0.1";
version = "2.1.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-2k1HYtgJ76qXLvX6RmOSKtMMg+K722n8U9YmBANvQvE=";
hash = "sha256-b1bB7Gto4aL1rbQXIelBVhutjIvZY+K+Y66BGN7OcCs=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "python_requires='>=3.7,<3.10'," "python_requires='>=3.7',"
'';
nativeBuildInputs = [ python3Packages.setuptools-scm ];
propagatedBuildInputs = [ python3Packages.i3ipc ];
@ -21,8 +16,9 @@ python3Packages.buildPythonApplication rec {
doCheck = false;
meta = with lib; {
homepage = "https://git.goral.net.pl/mgoral/i3a";
changelog = "https://git.goral.net.pl/i3a.git/log/";
description = "A set of scripts used for automation of i3 and sway window manager layouts";
homepage = "https://git.goral.net.pl/i3a.git/about";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ moni ];
};