diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-05-07 07:02:12 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-17 14:27:31 +0100 |
| commit | 71acbe87bcad4bfb95fb9240bbf145989db09fc6 (patch) | |
| tree | 33eef3cfb430ae22dfb8512fe32ec302bf498776 /gnu | |
| parent | 183f37b1dc7f0613d7f886fa796d710bd6bc3bc8 (diff) | |
gnu: Add python-sqlite-anyio.
* gnu/packages/databases.scm (python-sqlite-anyio): New variable.
Relates-to: guix/guix!8591
Change-Id: Ie51cd9116316defa58d96263dd849848a77c3e68
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -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 3c2237beed0..1fbf4c883fd 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm | |||
| @@ -1061,6 +1061,31 @@ auto-completion and syntax highlighting.") | |||
| 1061 | \"special\", or \"backslash commands\") on PostgreSQL.") | 1061 | \"special\", or \"backslash commands\") on PostgreSQL.") |
| 1062 | (license license:bsd-3))) | 1062 | (license license:bsd-3))) |
| 1063 | 1063 | ||
| 1064 | (define-public python-sqlite-anyio | ||
| 1065 | (package | ||
| 1066 | (name "python-sqlite-anyio") | ||
| 1067 | (version "0.2.8") | ||
| 1068 | (source | ||
| 1069 | (origin | ||
| 1070 | (method git-fetch) | ||
| 1071 | (uri (git-reference | ||
| 1072 | (url "https://github.com/davidbrochart/sqlite-anyio") | ||
| 1073 | (commit version))) | ||
| 1074 | (file-name (git-file-name name version)) | ||
| 1075 | (sha256 | ||
| 1076 | (base32 "075fnrrwzn9xc2clkcsyfycjc870khcwnpdg4g726qwl44pfzy2a")))) | ||
| 1077 | (build-system pyproject-build-system) | ||
| 1078 | (arguments | ||
| 1079 | (list | ||
| 1080 | #:build-backend "poetry.core.masonry.api")) ;XXX: python-uv-build is required | ||
| 1081 | (propagated-inputs (list python-anyio python-typing-extensions)) | ||
| 1082 | (native-inputs (list python-poetry-core python-pytest)) | ||
| 1083 | (home-page "https://github.com/davidbrochart/sqlite-anyio") | ||
| 1084 | (synopsis "Asynchronous client for SQLite using AnyIO") | ||
| 1085 | (description "This package provides an asynchronous client for SQLite | ||
| 1086 | using @code{AnyIO}.") | ||
| 1087 | (license license:expat))) | ||
| 1088 | |||
| 1064 | (define-public python-sqlitedict | 1089 | (define-public python-sqlitedict |
| 1065 | (package | 1090 | (package |
| 1066 | (name "python-sqlitedict") | 1091 | (name "python-sqlitedict") |
