rekado pushed a commit to branch master
in repository guix.
commit ba2e538ce352c033722734737be4793e01851892
Author: Sou Bunnbu (宋文武) <[email protected]>
AuthorDate: Wed Jan 15 14:38:10 2025 +0800
gnu: python-flask-misaka: Update to 1.0.1.
* gnu/packages/python-web.scm (python-flask-misaka): Update to 1.0.1.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-flask, python-pytest, python-setuptools and
python-wheel. Remove python-coverage and python-mock.
[propagated-inputs]: Add python-markupsafe. Remove python-flask.
Change-Id: Ib737e6268f98227909606753ffe8d9f72c539f73
---
gnu/packages/python-web.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index edac2e77fc..68d5128a6e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2349,19 +2349,21 @@ into Jinja2 by default.")
(define-public python-flask-misaka
(package
(name "python-flask-misaka")
- (version "1.0.0")
+ (version "1.0.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Flask-Misaka" version))
(sha256
(base32
- "12gm6hq3lvlj0ddw8p6lk5pky8jk3pw758ihffjl49shnnzc68zl"))))
- (build-system python-build-system)
+ "1yi9iall3ml1n8bff1mg49xajmldcm5pc0fkpl3w2rlnny08giax"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:test-flags #~(list "tests.py")))
(native-inputs
- (list python-coverage python-mock))
+ (list python-flask python-pytest python-setuptools python-wheel))
(propagated-inputs
- (list python-flask python-misaka))
+ (list python-markupsafe python-misaka))
(home-page "https://github.com/singingwolfboy/flask-misaka/")
(synopsis "Flask interface to Misaka, a Markdown parsing library")
(description