guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 24d52ff2060dcc56bb69e2f7ced1ef3dd9321dd0
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jan 21 19:56:23 2026 +0100
gnu: Add python-dbutils.
* gnu/packages/databases.scm (python-dbutils): New variable.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/databases.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 859640e821..57da1dbf76 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")