python3Packages.sqlite-fts4: modernize

This commit is contained in:
Harinn
2026-09-07 18:39:25 +07:00
parent 46dccb1919
commit e95ff796f2

View File

@@ -6,15 +6,17 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "sqlite-fts4";
version = "1.0.3";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "sqlite-fts4";
tag = version;
tag = finalAttrs.version;
hash = "sha256-Ibiows3DSnzjIUv7U9tYNVnDaecBBxjXzDqxbIlNhhU=";
};
@@ -30,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ meatcar ];
};
}
})