From 24d52ff2060dcc56bb69e2f7ced1ef3dd9321dd0 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Wed, 21 Jan 2026 19:56:23 +0100 Subject: gnu: Add python-dbutils. * gnu/packages/databases.scm (python-dbutils): New variable. Signed-off-by: Liliana Marie Prikler --- gnu/packages/databases.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'gnu/packages/databases.scm') diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 859640e8211..57da1dbf76f 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -6123,6 +6123,31 @@ relational databases are in general.") "This package implements the @acronym{LSP, Language Server Protocol} for SQL.") (license license:expat))) +(define-public python-dbutils + (package + (name "python-dbutils") + (version "3.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/WebwareForPython/DBUtils") + (commit + (string-append "Release-" + (string-join (string-split version #\.) "_"))))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x2bqqlp6ahm8k8d0f1g3l0fcsjala3z6jdmcwhwkbh0agg8agff")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools)) + (home-page "https://github.com/WebwareForPython/DBUtils") + (synopsis "Database connections for multi-threaded environments") + (description + "This package provides tooling for solid, persistent and pooled +connections to a database that can be used in all kinds of multi-threaded +environments.") + (license license:expat))) + (define-public python-dogpile-cache (package (name "python-dogpile-cache") -- cgit v1.3