9 buildPythonPackage rec {
10 pname = "sqlite-fts4";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/${version}";
20 hash = "sha256-Ibiows3DSnzjIUv7U9tYNVnDaecBBxjXzDqxbIlNhhU=";
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "sqlite_fts4" ];
28 description = "Custom Python functions for working with SQLite FTS4";
29 homepage = "https://github.com/simonw/sqlite-fts4";
30 license = licenses.asl20;
31 maintainers = with maintainers; [ meatcar ];