summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-07 11:53:04 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-07 11:54:24 +0100
commit80ddbaaaa033d72a023afd968a935bb1590f3489 (patch)
treeb43329807bf060ab92c75eb30d715ec8f16ac7a5 /gnu/packages/python-xyz.scm
parentbdbdb715dfeb48e79f6419da101c1486eae6496c (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm22
1 files 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