summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2026-06-11 16:37:03 +0900
committerNguyễn Gia Phong <cnx@loang.net>2026-06-23 23:03:17 +0900
commitdd3e59ad40f480ae330e0814a7ab5bf32fa4ef9e (patch)
tree71be97c6d83803b8e211e62b3e33925505b9f820
parenta12f6d0547b561b8e7ccc8eae392720b35dc6a74 (diff)
gnu: Add python-sbsv.
* gnu/packages/python-xyz.scm (python-sbsv): New variable. Merges: https://codeberg.org/guix/guix/pulls/9236 Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cb99d53e628..cb7a5a42db4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -36331,6 +36331,30 @@ instance in spelling correction, predictive typing, to help disabled people
36331write text fast, and for various text generation, statistics, and modeling tasks.") 36331write text fast, and for various text generation, statistics, and modeling tasks.")
36332 (license license:expat))) 36332 (license license:expat)))
36333 36333
36334(define-public python-sbsv
36335 (package
36336 (name "python-sbsv")
36337 (version "0.2.3")
36338 (source
36339 (origin
36340 (method git-fetch)
36341 (uri (git-reference
36342 (url "https://github.com/hsh814/sbsv")
36343 (commit (string-append "v" version))))
36344 (file-name (git-file-name name version))
36345 (sha256
36346 (base32 "1xzx0xhikwqvmzdbhprzljfvnxznr3an3jf0v07hwkixvh80s4f5"))
36347 (modules '((guix build utils)))
36348 (snippet #~(delete-file-recursively "libsbsv")))) ;separate C library
36349 (build-system pyproject-build-system)
36350 (native-inputs (list python-hatchling python-pytest))
36351 (home-page "https://github.com/hsh814/sbsv")
36352 (synopsis "Square bracket separated values")
36353 (description
36354 "This Python package provides a schema-driven structured log data format
36355for the ease of writing and parsing.")
36356 (license license:expat)))
36357
36334(define-public python-sqlglot 36358(define-public python-sqlglot
36335 (package 36359 (package
36336 (name "python-sqlglot") 36360 (name "python-sqlglot")