From 0e476cc3b5cad4d2949f66218f7f53b0fe6ac246 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 26 Nov 2025 14:39:08 +0000 Subject: [PATCH 1/2] python3Packages.dissect-extfs: 3.14 -> 3.15 --- pkgs/development/python-modules/dissect-extfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dissect-extfs/default.nix b/pkgs/development/python-modules/dissect-extfs/default.nix index 9e6398e12a44..dd4623e4dce7 100644 --- a/pkgs/development/python-modules/dissect-extfs/default.nix +++ b/pkgs/development/python-modules/dissect-extfs/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "dissect-extfs"; - version = "3.14"; + version = "3.15"; format = "pyproject"; disabled = pythonOlder "3.12"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.extfs"; tag = version; - hash = "sha256-BoEvLDjLKXX0oNfKkgLFkNovJuQozsAt+W1efYsqiiU="; + hash = "sha256-Ffm4AT5PLqlIOq6kxPcwqzRHNXP0tQ5tvkMS7dv9fZ4="; }; nativeBuildInputs = [ From 6cae859143f5408b41c0e7ef101fab1ad4811ca7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 26 Nov 2025 23:17:31 +0100 Subject: [PATCH 2/2] python313Packages.dissect-extfs: remove disabled --- .../development/python-modules/dissect-extfs/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/dissect-extfs/default.nix b/pkgs/development/python-modules/dissect-extfs/default.nix index dd4623e4dce7..14c42c9cb177 100644 --- a/pkgs/development/python-modules/dissect-extfs/default.nix +++ b/pkgs/development/python-modules/dissect-extfs/default.nix @@ -7,15 +7,12 @@ setuptools, setuptools-scm, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "dissect-extfs"; version = "3.15"; - format = "pyproject"; - - disabled = pythonOlder "3.12"; + pyproject = true; src = fetchFromGitHub { owner = "fox-it"; @@ -24,12 +21,12 @@ buildPythonPackage rec { hash = "sha256-Ffm4AT5PLqlIOq6kxPcwqzRHNXP0tQ5tvkMS7dv9fZ4="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm ]; - propagatedBuildInputs = [ + dependencies = [ dissect-cstruct dissect-util ];