diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-02 20:34:30 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 21:01:42 +0000 |
commit | ad9bb4c5bd3f97384a2c2c328856183f4c3b7ec0 (patch) | |
tree | 25f6f1cc5f70fde8be87ce3575c8bb56cea00608 /gnu | |
parent | 8e0e3b4f7993609f33abe82a60cdd404bada727a (diff) | |
download | guix-ad9bb4c5bd3f97384a2c2c328856183f4c3b7ec0.tar guix-ad9bb4c5bd3f97384a2c2c328856183f4c3b7ec0.tar.gz |
gnu: python-alembic: Update to 1.14.0.
* gnu/packages/databases.scm (python-alembic): Update to 1.14.0.
[arguments]<test-flags>: Skip 4 tests requiring latest python-pytz.
[propagated-inputs]: Add python-typing-extensions.
[native-inputs]: Remove python-pytest-cov; add python-pytest,
python-setuptools, and python-wheel.
Change-Id: Ife6a19416839ad1f94e912f926871db362ab820c
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index becd781c95..5b86e3dd67 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3840,18 +3840,37 @@ this library provides functions to facilitate such comparisons.") (define-public python-alembic (package (name "python-alembic") - (version "1.7.5") + (version "1.14.0") (source (origin (method url-fetch) (uri (pypi-uri "alembic" version)) (sha256 - (base32 "0lxi2g2025lz5k7k5dd5fc1lfijqi2yw6qqyjzp073z6laa8cckw")))) + (base32 "0jrh9q4h2jv2bafpd6isx2dvc90rpx6j7fpdvfwd0hin7fsr425h")))) (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 ")))) (native-inputs - (list python-mock python-pytest-cov)) + (list python-mock + python-pytest + python-setuptools + python-wheel)) (propagated-inputs - (list python-dateutil python-sqlalchemy python-mako python-editor)) + (list python-dateutil + python-editor + python-mako + python-sqlalchemy + python-typing-extensions)) (home-page "https://bitbucket.org/zzzeek/alembic") (synopsis "Database migration tool for SQLAlchemy") (description |