Unverified Commit 35c08baa authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.dissect-squashfs: 1.11 -> 1.12 (#495165)

parents fbd22c3a 9498b4ae
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  zstandard,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dissect-squashfs";
  version = "1.11";
  version = "1.12";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "fox-it";
    repo = "dissect.squashfs";
    tag = version;
    hash = "sha256-glmrsbNkhgYBhcL+qgEnBfJnGL4ViHH1L5HN9rGlUNM=";
    tag = finalAttrs.version;
    hash = "sha256-p+8MKpjAq09jTrlTaA8zSf1wMYzAHtydm5c8RICCAOQ=";
  };

  build-system = [
@@ -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 ];
  };
}
})