diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-21 19:56:23 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-02-07 22:37:16 +0100 |
| commit | 24d52ff2060dcc56bb69e2f7ced1ef3dd9321dd0 (patch) | |
| tree | bbd3f94d5b61c3b07ea6e4efcddf062e298ee9ce /gnu/packages/databases.scm | |
| parent | 561ed8814fd0f1c814c2b693db19a5223f59284b (diff) | |
gnu: Add python-dbutils.
* gnu/packages/databases.scm (python-dbutils): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/databases.scm')
| -rw-r--r-- | gnu/packages/databases.scm | 25 |
1 files changed, 25 insertions, 0 deletions
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") |
