Unverified Commit f4617aa0 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

python313Packages.qtile{,-extras}: 0.34.0 -> 0.34.1 (#470821)

parents 4163776f 974b5bb2
Loading
Loading
Loading
Loading
+16 −2
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  anyio,
  gobject-introspection,
  gtk3,
  imagemagick,
@@ -11,6 +13,7 @@
  pytest-asyncio,
  pytest-lazy-fixture,
  pytest-rerunfailures,
  pytest-xdist,
  pytestCheckHook,
  python-dateutil,
  qtile,
@@ -21,21 +24,31 @@
}:
buildPythonPackage rec {
  pname = "qtile-extras";
  version = "0.33.0";
  version = "0.34.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "elParaguayo";
    repo = "qtile-extras";
    tag = "v${version}";
    hash = "sha256-3aN2MrD1U5iBneVbYtNeWpK+JAQunGpemDpJnDuQdVI=";
    hash = "sha256-CtmTZmUQlqkDPd++n3fPbRB4z1NA4ZxnmIR84IjsURw=";
  };

  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 ];

  nativeCheckInputs = [
    anyio
    gobject-introspection
    imagemagick
    keyring
@@ -43,6 +56,7 @@ buildPythonPackage rec {
    pytest-asyncio
    pytest-lazy-fixture
    pytest-rerunfailures
    pytest-xdist
    pytestCheckHook
    python-dateutil
    qtile
+2 −2
Original line number Diff line number Diff line
@@ -40,14 +40,14 @@

buildPythonPackage rec {
  pname = "qtile";
  version = "0.34.0";
  version = "0.34.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "qtile";
    repo = "qtile";
    tag = "v${version}";
    hash = "sha256-o92N8AQQfNQP8sX4LCnlq0Ppe9OA0+goCv+sOxMFYjo=";
    hash = "sha256-PPyI+IGvHBQusVmU3D26VjYjLaa9+94KUqNwbQSzeaI=";
  };

  build-system = [