diff options
| author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2026-03-03 20:43:45 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:36:02 +0100 |
| commit | 5aac5ac959febc4fb8458cb4fbbb42a3a409f801 (patch) | |
| tree | 241a4886d51441f8f28cf5e6aeefc363e6f667e6 /gnu/packages/python-web.scm | |
| parent | 7d77a74160b2208d7d6cb588ace6301992344f89 (diff) | |
gnu: python-flask-sqlalchemy: Update to 3.1.1-0.168cb4b.
* gnu/packages/python-web.scm (python-flask-sqlalchemy): Update to
3.1.1-0.168cb4b.
[source]: Switch to git-fetch.
Change-Id: I42972b20f998e5f99cab02938eb9cdd678720ef5
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 787754c1c5..c4f1e66dce 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -8364,13 +8364,22 @@ S3.") (define-public python-flask-sqlalchemy (package (name "python-flask-sqlalchemy") - (version "3.1.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "flask_sqlalchemy" version)) - (sha256 - (base32 - "04l3dfivznlpvk9p9f20zdbyxl869k42z2w7glddlbc0h6w8pdp4")))) + ;; Released version fails tests in Python 3.12. + (properties '((commit . "168cb4b7b50fe5176307a10d873781bfafc6eeda") + (revision . "0"))) + (version (git-version "3.1.1" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pallets-eco/flask-sqlalchemy") + (commit (assoc-ref properties 'commit)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0xw8v1540m21x9crpgb0i3rxyhh1d24ldg354vndw9cif74ls5p6")))) (build-system pyproject-build-system) (arguments (list |
