Unverified Commit 9498b4ae authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.dissect-squashfs: migrate to finalAttrs

parent 65ea5530
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
  zstandard,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dissect-squashfs";
  version = "1.12";
  pyproject = true;
@@ -19,7 +19,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "fox-it";
    repo = "dissect.squashfs";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-p+8MKpjAq09jTrlTaA8zSf1wMYzAHtydm5c8RICCAOQ=";
  };

@@ -46,8 +46,8 @@ buildPythonPackage rec {
  meta = {
    description = "Dissect module implementing a parser for the SquashFS file system";
    homepage = "https://github.com/fox-it/dissect.squashfs";
    changelog = "https://github.com/fox-it/dissect.squashfs/releases/tag/${src.tag}";
    changelog = "https://github.com/fox-it/dissect.squashfs/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})