summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2022-01-22 11:29:38 +0100
committerMarius Bakke <marius@gnu.org>2022-01-22 12:42:47 +0100
commit74f38150981df1416e46b1fa6a2abf4f11e7281c (patch)
treefdc189b3a8f3d051295b51bc81159e5ddd590e0c /gnu/packages/python-web.scm
parente92961a687c9626daadc6d2585f543f023d468b5 (diff)
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.
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm33
1 files changed, 16 insertions, 17 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index c6e760ce358..483abec2d5a 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3769,25 +3769,24 @@ itself.")
3769 3769
3770(define-public python-flask-migrate 3770(define-public python-flask-migrate
3771 (package 3771 (package
3772 (name "python-flask-migrate") 3772 (name "python-flask-migrate")
3773 (version "2.5.3") 3773 (version "3.1.0")
3774 (source 3774 (home-page "https://github.com/miguelgrinberg/flask-migrate/")
3775 (origin 3775 (source (origin
3776 (method url-fetch) 3776 (method git-fetch)
3777 (uri (pypi-uri "Flask-Migrate" version)) 3777 (uri (git-reference (url home-page)
3778 (sha256 3778 (commit (string-append "v" version))))
3779 (base32 3779 (sha256
3780 "1vip9ww6l18dxffjsggm83k71zkvihxpnhaswpv8klh95s6517d6")))) 3780 (base32
3781 (build-system python-build-system) 3781 "0zj7qpknvlhrh4fsp5sx4fwyx3sp41ynclka992zympm3xym9zyq"))))
3782 (propagated-inputs 3782 (build-system python-build-system)
3783 (list python-flask python-alembic python-sqlalchemy 3783 (propagated-inputs
3784 python-flask-script python-flask-sqlalchemy)) 3784 (list python-flask python-alembic python-flask-sqlalchemy))
3785 (home-page "https://github.com/miguelgrinberg/flask-migrate/") 3785 (synopsis "SQLAlchemy database migrations for Flask programs using
3786 (synopsis "SQLAlchemy database migrations for Flask programs using
3787Alembic") 3786Alembic")
3788 (description "This package contains SQLAlchemy database migration tools 3787 (description "This package contains SQLAlchemy database migration tools
3789for Flask programs that are using @code{python-alembic}.") 3788for Flask programs that are using @code{python-alembic}.")
3790 (license license:expat))) 3789 (license license:expat)))
3791 3790
3792(define-public python-genshi 3791(define-public python-genshi
3793 (package 3792 (package