diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-13 11:20:11 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:15 +0200 |
| commit | 43bd9c7f770e9efb3efeb186690088ad83b40439 (patch) | |
| tree | c97a65e1f5904e307e63cb7d75c62fc6622739e2 /gnu/packages | |
| parent | a5b507230c2ee3c8052cbcf7c5cd855c6816593e (diff) | |
gnu: python-asyncpg: Update to 0.30.0.
* gnu/packages/databases.scm (python-asyncpg): Update to 0.30.0. Fix build.
[build-system]: Swap to pyproject-build-system
[propagated-inputs]: Remove python-typing-extensions; add
python-async-timeout.
[native-inputs]: Add python-distro, python-setuptools, and python-wheel.
Change-Id: Icb586671370ac2f6d30577383b257003eda6a4d5
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/databases.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 6835b2b0a3f..3601aa0021e 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3371,20 +3371,24 @@ coroutine-specific markup.") (define-public python-asyncpg (package (name "python-asyncpg") - (version "0.25.0") + (version "0.30.0") (source (origin (method url-fetch) (uri (pypi-uri "asyncpg" version)) (sha256 - (base32 "0h1573lp4607nppflnnjrhn7yrfy6i54cm98gi4qbcikjykfdy33")))) - (build-system python-build-system) - (propagated-inputs (list python-typing-extensions)) + (base32 "0lf8xbrsb2ycpqx1vzlb05p48g5sh9zq24a8yh17cw5nia9fjlf5")))) + (build-system pyproject-build-system) (native-inputs (list postgresql python-cython python-pytest - python-uvloop)) + python-uvloop + python-distro + python-setuptools + python-wheel)) + (propagated-inputs + (list python-async-timeout)) (home-page "https://github.com/MagicStack/asyncpg") (synopsis "Fast PostgreSQL database client library for Python") (description "@code{asyncpg} is a database interface library designed |
