From 63a699bb88aaadd2da6b49e61ddd4cd34b8d2e6f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 21 May 2025 00:56:19 +0200 Subject: [PATCH] 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 ]; };