From bf3fe34f3745b0ed3a30390bd26ee05929cf22fc Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sat, 21 Mar 2026 18:23:11 +0100 Subject: [PATCH] python3Packages.qtile-extras: 0.34.1 -> 0.35.0 --- .../python-modules/qtile-extras/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/qtile-extras/default.nix b/pkgs/development/python-modules/qtile-extras/default.nix index f636eed0e849..0a81a4ba04f6 100644 --- a/pkgs/development/python-modules/qtile-extras/default.nix +++ b/pkgs/development/python-modules/qtile-extras/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - fetchpatch, anyio, gobject-introspection, gtk3, @@ -24,7 +23,7 @@ }: buildPythonPackage rec { pname = "qtile-extras"; - version = "0.34.1"; + version = "0.35.0"; # nixpkgs-update: no auto update # should be updated alongside with `qtile` pyproject = true; @@ -33,18 +32,9 @@ buildPythonPackage rec { owner = "elParaguayo"; repo = "qtile-extras"; tag = "v${version}"; - hash = "sha256-CtmTZmUQlqkDPd++n3fPbRB4z1NA4ZxnmIR84IjsURw="; + hash = "sha256-xZ1pxe1EUnnjqz+46R4R9DWKi7M2j1pgvY4uy1dBak8="; }; - patches = [ - # Remove unpack of widget.eval call in tests - # https://github.com/elParaguayo/qtile-extras/pull/460 - (fetchpatch { - url = "https://github.com/elParaguayo/qtile-extras/commit/359964520a9dcd2c7e12680bfc53e359d74c489b.patch?full_index=1"; - hash = "sha256-nKt39bTaBbvEC5jWU6XH0pigTs4hpSmMIwFe/A9YdJA="; - }) - ]; - build-system = [ setuptools-scm ]; dependencies = [ gtk3 ];