1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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>
This commit is contained in:
Nicolas Graves
2026-01-19 03:38:24 +01:00
committed by Sharlatan Hellseher
parent 3a998123f6
commit fc6837626e

View File

@@ -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