guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 80ddbaaaa033d72a023afd968a935bb1590f3489
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 7 11:53:04 2025 +0100
gnu: python-aiopg: Update to 1.4.0, fix build.
* gnu/packages/python-xyz.scm (python-aiopg): Update to 1.4.0.
[build-system]: Switch to pyproject-build-system.
[arguments] <tests?>: Tests depend on running Docker.
[propagated-inputs]: Remove python-async-timeout; add
python-async-timeout-4.
[native-inputs]: Add python-setuptools.
[description]: Fix fill column.
Change-Id: I459c5af5e43a3b6046ca2de702bb3646c5c73490
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9b73db1ff0..d8b3be51b0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37917,22 +37917,28 @@ writing STL files. It supports both the text and
binary forms of STL.")
(define-public python-aiopg
(package
(name "python-aiopg")
- (version "1.3.3")
+ (version "1.4.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "aiopg" version))
(sha256
(base32
- "1mwmypsfzh8adjbyvf7kqv9h3k1kf5ykhi1g3ahw4wqdxaj6nz2l"))))
- (build-system python-build-system)
- (native-inputs (list python-sqlalchemy))
- (propagated-inputs (list python-async-timeout python-psycopg2-binary))
+ "0wcxcfazjsknr7hv46374rzh7502k8g1hvbi2r0rakbbz2z56qhi"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;they need Docker
+ (native-inputs
+ (list python-setuptools
+ python-sqlalchemy))
+ (propagated-inputs
+ (list python-async-timeout-4
+ python-psycopg2-binary))
(home-page "https://aiopg.readthedocs.io")
(synopsis "Postgres integration with asyncio")
(description
- "aiopg is a library for accessing a PostgreSQL
-database from the asyncio (PEP-3156/tulip) framework. It wraps
-asynchronous features of the Psycopg database driver.")
+ "aiopg is a library for accessing a PostgreSQL database from the
+asyncio (PEP-3156/tulip) framework. It wraps asynchronous
+features of the Psycopg database driver.")
(license license:bsd-3)))
(define-public python-verspec