python313Packages.dissect-ole: 3.10 -> 3.11, python313Packages.dissect-jffs: 1.4 -> 1.5, python313Packages.dissect-volume: 3.13 -> 3.15 (#411232)

This commit is contained in:
Fabian Affolter
2025-05-26 22:35:36 +02:00
committed by GitHub
3 changed files with 18 additions and 8 deletions
@@ -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 = [
@@ -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 = [
@@ -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 ];
};