python313Packages.acquire: 3.19 -> 3.20, python313Packages.dissect: 3.19 -> 3.20.1 (#445562)

This commit is contained in:
Fabian Affolter
2025-09-23 17:48:19 +00:00
committed by GitHub
4 changed files with 53 additions and 4 deletions
@@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "acquire";
version = "3.19";
version = "3.20";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "fox-it";
repo = "acquire";
tag = version;
hash = "sha256-0aqngfv2ZyVw1ymotz1PmXKUZeTHUVL9ICL6cyEn/wk=";
hash = "sha256-BfY7LKSP82QnRz3QdfUNFvz7epw5RwGT/H2S43MSvVk=";
};
build-system = [
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
dissect-cstruct,
dissect-util,
fetchFromGitHub,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "dissect-cramfs";
version = "1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.cramfs";
tag = version;
hash = "sha256-0BHt7v2sI9uxZFUVsTkPZHy+wC6twaHeBmgH04anmp0=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dissect-cstruct
dissect-util
];
# Issue with the test file handling
doCheck = false;
pythonImportsCheck = [ "dissect.cramfs" ];
meta = with lib; {
description = "Dissect module implementing a parser for the CRAMFS file system";
homepage = "https://github.com/fox-it/dissect.cramfs";
changelog = "https://github.com/fox-it/dissect.crmfs/releases/tag/${src.tag}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}
@@ -5,6 +5,7 @@
dissect-btrfs,
dissect-cim,
dissect-clfs,
dissect-cramfs,
dissect-cstruct,
dissect-esedb,
dissect-etl,
@@ -37,7 +38,7 @@
buildPythonPackage rec {
pname = "dissect";
version = "3.19";
version = "3.20.1";
pyproject = true;
disabled = pythonOlder "3.11";
@@ -46,7 +47,7 @@ buildPythonPackage rec {
owner = "fox-it";
repo = "dissect";
tag = version;
hash = "sha256-eEiWKblhJPkZuxJvwJnHtxwvJ9uhXIkS56CeRtmEfkU=";
hash = "sha256-Zc9NBrRDbSP5Yk3gJoMG+6nAGFxBHiPKvvfQLMcu+tk=";
};
pythonRelaxDeps = true;
@@ -61,6 +62,7 @@ buildPythonPackage rec {
dissect-btrfs
dissect-cim
dissect-clfs
dissect-cramfs
dissect-cstruct
dissect-esedb
dissect-etl
+2
View File
@@ -3715,6 +3715,8 @@ self: super: with self; {
dissect-cobaltstrike = callPackage ../development/python-modules/dissect-cobaltstrike { };
dissect-cramfs = callPackage ../development/python-modules/dissect-cramfs { };
dissect-cstruct = callPackage ../development/python-modules/dissect-cstruct { };
dissect-esedb = callPackage ../development/python-modules/dissect-esedb { };