Commit a16c8de6 authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

python313Packages.swh-web-client: switch to `finalAttrs` pattern

parent 24e25149
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
  types-requests,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "swh-web-client";
  version = "0.9.2";
  pyproject = true;
@@ -28,7 +28,7 @@ buildPythonPackage rec {
    group = "swh";
    owner = "devel";
    repo = "swh-web-client";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-ZZptYLC1os2i0NtBD3mp4QaQQRoKxnr9k8gJuqmpizE=";
  };

@@ -68,4 +68,4 @@ buildPythonPackage rec {
    license = lib.licenses.gpl3Only;
    maintainers = [ ];
  };
}
})