guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#60838] [PATCH v3 2/9] gnu: Add python-sqlite-fts4.


From: Felix Gruber
Subject: [bug#60838] [PATCH v3 2/9] gnu: Add python-sqlite-fts4.
Date: Sun, 26 Mar 2023 19:43:28 +0000

* gnu/packages/databases.scm (python-sqlite-fts4): New variable.
---
 gnu/packages/databases.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index e51ddd5bf2..7a5f62c0f4 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3561,6 +3561,25 @@ (define-public python-alembic
 SQLAlchemy Database Toolkit for Python.")
     (license license:expat)))
 
+(define-public python-sqlite-fts4
+  (package
+    (name "python-sqlite-fts4")
+    (version "1.0.3")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "sqlite-fts4" version))
+              (sha256
+               (base32
+                "034kx0ac556sywy1p4qcrc36l24w3q0xwswqv2z9s3k8yvm5xc3q"))))
+    (build-system python-build-system)
+    (native-inputs (list python-pytest))
+    (home-page "https://github.com/simonw/sqlite-fts4";)
+    (synopsis "Python functions for working with SQLite FTS4 search")
+    (description "This package provieds custom SQLite functions written
+in Python for ranking documents indexed using the SQLite's FTS4 full
+text search extension.")
+    (license license:asl2.0)))
+
 (define-public python-pickleshare
   (package
     (name "python-pickleshare")
-- 
2.39.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]