python313Packages.dissect-sql: 3.10 -> 3.11, python313Packages.dissect-volume: 3.13 -> 3.15, python313Packages.dissect-esedb: 3.15 -> 3.16 (#411224)

This commit is contained in:
Fabian Affolter
2025-05-26 22:37:06 +02:00
committed by GitHub
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "dissect-sql";
version = "3.10";
version = "3.11";
pyproject = true;
disabled = pythonOlder "3.10";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "fox-it";
repo = "dissect.sql";
tag = version;
hash = "sha256-mhZvvPmREBY29U31POH8OfktVdNqNpQVIICPBin5WyI=";
hash = "sha256-1rIsG4TUv7JkNMiyGCbEEnnp2RccP8QksE91p3z1zjY=";
};
build-system = [
@@ -38,10 +38,16 @@ buildPythonPackage rec {
pythonImportsCheck = [ "dissect.sql" ];
disabledTests = [
# Invalid header magic
"test_sqlite"
"test_empty"
];
meta = with lib; {
description = "Dissect module implementing a parsers for the SQLite database file format";
homepage = "https://github.com/fox-it/dissect.sql";
changelog = "https://github.com/fox-it/dissect.sql/releases/tag/${version}";
changelog = "https://github.com/fox-it/dissect.sql/releases/tag/${src.tag}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};