From fc6837626eb9de47f02f1eca3bd095c92bb72611 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 19 Jan 2026 03:38:24 +0100 Subject: [PATCH] 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 --- gnu/packages/databases.scm | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 676ac58d8d..113c33a0b8 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