mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: python-flask-migrate: Update to 3.1.0.
* gnu/packages/python-web.scm (python-flask-migrate): Update to 3.1.0. [source]: Change to GIT-FETCH. [propagated-inputs]: Remove PYTHON-SCRIPT and PYTHON-SQLALCHEMY.
This commit is contained in:
parent
e92961a687
commit
74f3815098
1 changed files with 16 additions and 17 deletions
|
@ -3770,19 +3770,18 @@ (define-public python-flask-script
|
|||
(define-public python-flask-migrate
|
||||
(package
|
||||
(name "python-flask-migrate")
|
||||
(version "2.5.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Flask-Migrate" version))
|
||||
(version "3.1.0")
|
||||
(home-page "https://github.com/miguelgrinberg/flask-migrate/")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference (url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1vip9ww6l18dxffjsggm83k71zkvihxpnhaswpv8klh95s6517d6"))))
|
||||
"0zj7qpknvlhrh4fsp5sx4fwyx3sp41ynclka992zympm3xym9zyq"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
(list python-flask python-alembic python-sqlalchemy
|
||||
python-flask-script python-flask-sqlalchemy))
|
||||
(home-page "https://github.com/miguelgrinberg/flask-migrate/")
|
||||
(list python-flask python-alembic python-flask-sqlalchemy))
|
||||
(synopsis "SQLAlchemy database migrations for Flask programs using
|
||||
Alembic")
|
||||
(description "This package contains SQLAlchemy database migration tools
|
||||
|
|
Loading…
Reference in a new issue