joystickwake: 0.4.2 -> 0.5.2

Replace dependency `dbus-next` by `dbus-fast` as indicated by the release note for `v0.5`:

https://codeberg.org/forestix/joystickwake/releases/tag/v0.5
This commit is contained in:
Firelight Flagboy
2026-04-25 21:59:55 +02:00
parent 53939f341f
commit 00aaffcbf6
+3 -3
View File
@@ -5,14 +5,14 @@
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "joystickwake";
version = "0.4.2";
version = "0.5.2";
pyproject = true;
src = fetchFromCodeberg {
owner = "forestix";
repo = "joystickwake";
tag = "v${finalAttrs.version}";
hash = "sha256-vSvIpbcDIbRyitVjx3wNSxt5vTIZ9/NPWokOJt0p6oQ=";
hash = "sha256-qIXXlwZec4CQk93gmY5O3mdGdlNCeXWTr/DDw4vwRUM=";
};
build-system = with python3.pkgs; [
@@ -20,7 +20,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
];
dependencies = with python3.pkgs; [
dbus-next
dbus-fast
pyudev
xlib
];