Commit 6d3f2f36 authored by Sigmanificient's avatar Sigmanificient
Browse files

python3Packages.qtile-extras: use finalAttrs

parent bf3fe34f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
  xorg-server,
  nixosTests,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "qtile-extras";
  version = "0.35.0";
  # nixpkgs-update: no auto update
@@ -31,7 +31,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "elParaguayo";
    repo = "qtile-extras";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-xZ1pxe1EUnnjqz+46R4R9DWKi7M2j1pgvY4uy1dBak8=";
  };

@@ -97,8 +97,8 @@ buildPythonPackage rec {
  meta = {
    description = "Extra modules and widgets for the Qtile tiling window manager";
    homepage = "https://github.com/elParaguayo/qtile-extras";
    changelog = "https://github.com/elParaguayo/qtile-extras/blob/${src.tag}/CHANGELOG";
    changelog = "https://github.com/elParaguayo/qtile-extras/blob/${finalAttrs.src.tag}/CHANGELOG";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ arjan-s ];
  };
}
})