mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
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
This commit is contained in:
parent
8e0e3b4f79
commit
ad9bb4c5bd
1 changed files with 23 additions and 4 deletions
|
@ -3840,18 +3840,37 @@ (define-public python-alchemy-mock
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue