summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2025-01-15 14:38:10 +0800
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:58 +0100
commitba2e538ce352c033722734737be4793e01851892 (patch)
treefad05894651f4f940685d1b4bb85bf40dac79b9a /gnu/packages/python-web.scm
parent2260a70870d82672fd2285a2554be2b2a6f358d5 (diff)
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
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm12
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index edac2e77fc2..68d5128a6ed 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2349,19 +2349,21 @@ into Jinja2 by default.")
2349(define-public python-flask-misaka 2349(define-public python-flask-misaka
2350 (package 2350 (package
2351 (name "python-flask-misaka") 2351 (name "python-flask-misaka")
2352 (version "1.0.0") 2352 (version "1.0.1")
2353 (source 2353 (source
2354 (origin 2354 (origin
2355 (method url-fetch) 2355 (method url-fetch)
2356 (uri (pypi-uri "Flask-Misaka" version)) 2356 (uri (pypi-uri "Flask-Misaka" version))
2357 (sha256 2357 (sha256
2358 (base32 2358 (base32
2359 "12gm6hq3lvlj0ddw8p6lk5pky8jk3pw758ihffjl49shnnzc68zl")))) 2359 "1yi9iall3ml1n8bff1mg49xajmldcm5pc0fkpl3w2rlnny08giax"))))
2360 (build-system python-build-system) 2360 (build-system pyproject-build-system)
2361 (arguments
2362 (list #:test-flags #~(list "tests.py")))
2361 (native-inputs 2363 (native-inputs
2362 (list python-coverage python-mock)) 2364 (list python-flask python-pytest python-setuptools python-wheel))
2363 (propagated-inputs 2365 (propagated-inputs
2364 (list python-flask python-misaka)) 2366 (list python-markupsafe python-misaka))
2365 (home-page "https://github.com/singingwolfboy/flask-misaka/") 2367 (home-page "https://github.com/singingwolfboy/flask-misaka/")
2366 (synopsis "Flask interface to Misaka, a Markdown parsing library") 2368 (synopsis "Flask interface to Misaka, a Markdown parsing library")
2367 (description 2369 (description