python3Packages.dissect-cim: 3.12 -> 3.13 (#464524)

This commit is contained in:
Fabian Affolter
2025-11-25 08:02:37 +00:00
committed by GitHub
@@ -7,21 +7,18 @@
setuptools,
setuptools-scm,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dissect-cim";
version = "3.12";
version = "3.13";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.cim";
tag = version;
hash = "sha256-e1G4642QeIhtKWvtfiQs3eOl+dFP/8VWZJGvO8dFWxY=";
hash = "sha256-S3EbGWLajfWTy0h0cmECHmHH/QLu5WmhnqTCQWSbYs8=";
};
build-system = [
@@ -44,7 +41,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Dissect module implementing a parser for the Windows Common Information Model (CIM) database";
homepage = "https://github.com/fox-it/dissect.cim";
changelog = "https://github.com/fox-it/dissect.cim/releases/tag/${version}";
changelog = "https://github.com/fox-it/dissect.cim/releases/tag/${src.tag}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};