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

Changed files
+53 -4
pkgs
development
python-modules
acquire
dissect
dissect-cramfs
top-level
+2 -2
pkgs/development/python-modules/acquire/default.nix
···
buildPythonPackage rec {
pname = "acquire";
-
version = "3.19";
+
version = "3.20";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "fox-it";
repo = "acquire";
tag = version;
-
hash = "sha256-0aqngfv2ZyVw1ymotz1PmXKUZeTHUVL9ICL6cyEn/wk=";
+
hash = "sha256-BfY7LKSP82QnRz3QdfUNFvz7epw5RwGT/H2S43MSvVk=";
};
build-system = [
+45
pkgs/development/python-modules/dissect-cramfs/default.nix
···
+
{
+
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 ];
+
};
+
}
+4 -2
pkgs/development/python-modules/dissect/default.nix
···
dissect-btrfs,
dissect-cim,
dissect-clfs,
+
dissect-cramfs,
dissect-cstruct,
dissect-esedb,
dissect-etl,
···
buildPythonPackage rec {
pname = "dissect";
-
version = "3.19";
+
version = "3.20.1";
pyproject = true;
disabled = pythonOlder "3.11";
···
owner = "fox-it";
repo = "dissect";
tag = version;
-
hash = "sha256-eEiWKblhJPkZuxJvwJnHtxwvJ9uhXIkS56CeRtmEfkU=";
+
hash = "sha256-Zc9NBrRDbSP5Yk3gJoMG+6nAGFxBHiPKvvfQLMcu+tk=";
};
pythonRelaxDeps = true;
···
dissect-btrfs
dissect-cim
dissect-clfs
+
dissect-cramfs
dissect-cstruct
dissect-esedb
dissect-etl
+2
pkgs/top-level/python-packages.nix
···
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 { };