python313Packages.dissect-ntfs: 3.14 -> 3.15

Changelog: https://github.com/fox-it/dissect.ntfs/releases/tag/3.15
This commit is contained in:
Fabian Affolter
2025-11-27 20:18:07 +01:00
parent 7123f9682e
commit e3524281f9
@@ -7,21 +7,18 @@
setuptools,
setuptools-scm,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dissect-ntfs";
version = "3.14";
version = "3.15";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.ntfs";
tag = version;
hash = "sha256-C2tve1RVR8Q7t1Xz7Of1xRZH6IuLP9nL2l1cHbycFQ4=";
hash = "sha256-dd0AGkOXd+7VB6RIGiLoq1AFi4Uns1axW4V8MN8W7ao=";
};
build-system = [
@@ -43,6 +40,14 @@ buildPythonPackage rec {
"tests/test_index.py"
];
disabledTests = [
# Issue with archive
"test_mft"
"test_ntfs"
"test_secure"
"test_fragmented_mft"
];
meta = with lib; {
description = "Dissect module implementing a parser for the NTFS file system";
homepage = "https://github.com/fox-it/dissect.ntfs";