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
|
|
@ -3769,25 +3769,24 @@ itself.")
|
||||||
|
|
||||||
(define-public python-flask-migrate
|
(define-public python-flask-migrate
|
||||||
(package
|
(package
|
||||||
(name "python-flask-migrate")
|
(name "python-flask-migrate")
|
||||||
(version "2.5.3")
|
(version "3.1.0")
|
||||||
(source
|
(home-page "https://github.com/miguelgrinberg/flask-migrate/")
|
||||||
(origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "Flask-Migrate" version))
|
(uri (git-reference (url home-page)
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(sha256
|
||||||
"1vip9ww6l18dxffjsggm83k71zkvihxpnhaswpv8klh95s6517d6"))))
|
(base32
|
||||||
(build-system python-build-system)
|
"0zj7qpknvlhrh4fsp5sx4fwyx3sp41ynclka992zympm3xym9zyq"))))
|
||||||
(propagated-inputs
|
(build-system python-build-system)
|
||||||
(list python-flask python-alembic python-sqlalchemy
|
(propagated-inputs
|
||||||
python-flask-script python-flask-sqlalchemy))
|
(list python-flask python-alembic python-flask-sqlalchemy))
|
||||||
(home-page "https://github.com/miguelgrinberg/flask-migrate/")
|
(synopsis "SQLAlchemy database migrations for Flask programs using
|
||||||
(synopsis "SQLAlchemy database migrations for Flask programs using
|
|
||||||
Alembic")
|
Alembic")
|
||||||
(description "This package contains SQLAlchemy database migration tools
|
(description "This package contains SQLAlchemy database migration tools
|
||||||
for Flask programs that are using @code{python-alembic}.")
|
for Flask programs that are using @code{python-alembic}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-genshi
|
(define-public python-genshi
|
||||||
(package
|
(package
|
||||||
|
|
|
||||||
Reference in a new issue