From 8dbb549c8b915534f25b74df5ce77390a70e06b9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 May 2025 23:47:24 +0200 Subject: [PATCH 1/3] python313Packages.dissect-ole: 3.10 -> 3.11 Diff: https://github.com/fox-it/dissect.ole/compare/refs/tags/3.10...refs/tags/3.11 Changelog: https://github.com/fox-it/dissect.ole/releases/tag/3.11 --- pkgs/development/python-modules/dissect-ole/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dissect-ole/default.nix b/pkgs/development/python-modules/dissect-ole/default.nix index dcba6927bf4a..468154a21ea5 100644 --- a/pkgs/development/python-modules/dissect-ole/default.nix +++ b/pkgs/development/python-modules/dissect-ole/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "dissect-ole"; - version = "3.10"; + version = "3.11"; pyproject = true; disabled = pythonOlder "3.9"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.ole"; tag = version; - hash = "sha256-BGJnKL27Sz5CS+PEVK6AeXBuzYpLSA8qR9sz7qeOIWc="; + hash = "sha256-KdqEZxZ2V3AKHgpHfXmnw4sh+P8ZPOMvbRq0xENwiX8="; }; build-system = [ From 04024abdda114d6c731b3eea245ef1f0c018dd4a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 May 2025 23:59:21 +0200 Subject: [PATCH 2/3] python313Packages.dissect-jffs: 1.4 -> 1.5 Diff: https://github.com/fox-it/dissect.jffs/compare/refs/tags/1.4...refs/tags/1.5 Changelog: https://github.com/fox-it/dissect.jffs/releases/tag/1.5 --- pkgs/development/python-modules/dissect-jffs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dissect-jffs/default.nix b/pkgs/development/python-modules/dissect-jffs/default.nix index 2498b00420ef..7cd6d1598edb 100644 --- a/pkgs/development/python-modules/dissect-jffs/default.nix +++ b/pkgs/development/python-modules/dissect-jffs/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "dissect-jffs"; - version = "1.4"; + version = "1.5"; pyproject = true; disabled = pythonOlder "3.9"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.jffs"; tag = version; - hash = "sha256-U8tQbCOMdudpsct72QHqKXd2QL99eqpfOJ/QHVUpcIk="; + hash = "sha256-HXGmZZd+fYnOCEpffdZe9dOLJS3jY7dIrb6rmhgbYyw="; }; nativeBuildInputs = [ From 68357544ec7f310dbfaa8bb822013bf980d95011 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 21 May 2025 00:56:19 +0200 Subject: [PATCH 3/3] python313Packages.dissect-volume: 3.13 -> 3.15 Changelog: https://github.com/fox-it/dissect.volume/releases/tag/3.15 --- .../python-modules/dissect-volume/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/dissect-volume/default.nix b/pkgs/development/python-modules/dissect-volume/default.nix index 658006309fa6..0ec6bc843f4a 100644 --- a/pkgs/development/python-modules/dissect-volume/default.nix +++ b/pkgs/development/python-modules/dissect-volume/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "dissect-volume"; - version = "3.13"; + version = "3.15"; pyproject = true; disabled = pythonOlder "3.13"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.volume"; tag = version; - hash = "sha256-uTbXvJ8lP4ir9rTToDGYXD837Z1fzi+Eh6cASg+jxdc="; + hash = "sha256-QxIZg0svKBHp7uVsK4S40oDBOxFudSHBzi6I2iloiok="; }; build-system = [ @@ -40,13 +40,23 @@ buildPythonPackage rec { disabledTests = [ # gzip.BadGzipFile: Not a gzipped file + "test_apm" + "test_bsd" + "test_bsd64" "test_ddf_read" "test_dm_thin" - "test_lvm" + "test_gpt_4k" + "test_gpt_esxi_no_name_xff" + "test_gpt_esxi" + "test_gpt" + "test_hybrid_gpt" "test_lvm_mirro" "test_lvm_thin" "test_lvm" + "test_lvm" + "test_mbr" "test_md_raid0_zones" + "test_md_raid1_multiple_disks" "test_md_read" "test_vinum" ]; @@ -54,7 +64,7 @@ buildPythonPackage rec { meta = with lib; { description = "Dissect module implementing various utility functions for the other Dissect modules"; homepage = "https://github.com/fox-it/dissect.volume"; - changelog = "https://github.com/fox-it/dissect.volume/releases/tag/${version}"; + changelog = "https://github.com/fox-it/dissect.volume/releases/tag/${src.tag}"; license = licenses.agpl3Only; maintainers = with maintainers; [ fab ]; };