diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-30 17:47:28 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-04 21:49:58 +0000 |
| commit | 77e79b0ea9ef65b563d555611950f8d666e2207a (patch) | |
| tree | 3557f0ce352a47fbc3a5ff43a26096a9a4d2eae7 /gnu | |
| parent | bdb405d72237744d8301586ad3b8953304b9123f (diff) | |
gnu: python-flask-multistatic: Switch to pyproject.
* gnu/packages/python-web.scm (python-flask-multistatic):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Change-Id: Ifed1cf128f989785052404ba4bfeca7af72705cc
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 415fce8a8f7..b379461db0a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -7394,9 +7394,10 @@ upload, and reCAPTCHA.") (sha256 (base32 "0p4v50rwv64wcd0zlq7rzl4waprwr4hj19s3cgf1isywa7jcisgm")))) - (build-system python-build-system) - (propagated-inputs - (list python-flask)) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests upstream. + (native-inputs (list python-setuptools)) + (propagated-inputs (list python-flask)) (home-page "https://pagure.io/flask-multistatic") (synopsis "Flask plugin to allow overriding static files") (description "@code{flask-multistatic} is a flask plugin that adds support |
