From e3524281f92abb00940f666e146352feec042ce7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 27 Nov 2025 17:22:26 +0100 Subject: [PATCH] python313Packages.dissect-ntfs: 3.14 -> 3.15 Changelog: https://github.com/fox-it/dissect.ntfs/releases/tag/3.15 --- .../python-modules/dissect-ntfs/default.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/dissect-ntfs/default.nix b/pkgs/development/python-modules/dissect-ntfs/default.nix index dbceefc817c0..6d2670f1aabe 100644 --- a/pkgs/development/python-modules/dissect-ntfs/default.nix +++ b/pkgs/development/python-modules/dissect-ntfs/default.nix @@ -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";