summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-01-19 03:38:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-20 15:01:50 +0000
commitfc6837626eb9de47f02f1eca3bd095c92bb72611 (patch)
treefe729cd107a8eb13a0db30e6ecc31dbab54f6840
parent3a998123f691f038796f38a20044410fd4b45740 (diff)
gnu: python-alembic: Update to 1.18.1.
* gnu/packages/databases.scm (python-alembic): Update to 1.18.1. [arguments]<#:test-flags>: Drop timezone tests. [native-inputs]: Add python-black, python-tzdata. Remove python-wheel. [propagated-inputs]: Remove python-dateutil, python-editor. Add python-tomli. [home-page]: Update it. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/databases.scm26
1 files changed, 9 insertions, 17 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 676ac58d8d8..113c33a0b84 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4482,38 +4482,30 @@ this library provides functions to facilitate such comparisons.")
(define-public python-alembic
(package
(name "python-alembic")
- (version "1.14.0")
+ (version "1.18.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "alembic" version))
(sha256
- (base32 "0jrh9q4h2jv2bafpd6isx2dvc90rpx6j7fpdvfwd0hin7fsr425h"))))
+ (base32 "0rmq5z30vmv5x5c355mj2whjz1m086c0k4xqndpq35lm6n0npb43"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
- #~(list "--ignore=tests/integration"
- "-k" (string-join
- ;; XXX: Tests require fresh python-pytz timezones, remove
- ;; when updated.
- (list "not test_custom_tz"
- "test_custom_tz_lowercase"
- "test_custom_tz_utc"
- "test_custom_tzdata_tz")
- " and not "))))
+ #~(list "--ignore=tests/integration")))
(native-inputs
- (list python-mock
+ (list python-black ; runs a hook in tests.
+ python-mock
python-pytest
python-setuptools
- python-wheel))
+ python-tzdata))
(propagated-inputs
- (list python-dateutil
- python-editor
- python-mako
+ (list python-mako
python-sqlalchemy-2
+ python-tomli
python-typing-extensions))
- (home-page "https://bitbucket.org/zzzeek/alembic")
+ (home-page "https://github.com/sqlalchemy/alembic")
(synopsis "Database migration tool for SQLAlchemy")
(description
"Alembic is a lightweight database migration tool for usage with the