From 5f1895ea06e76691229255d961a706a5b8ba1f29 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 6 Jan 2025 13:14:58 +0100 Subject: [PATCH] gnu: python-flask-htpasswd: Update to 0.5.0. * gnu/packages/python-web.scm (python-flask-htpasswd): Update to 0.5.0. [build-system]: Use pyproject-build-system. [arguments]: Disable tests. Change-Id: I24ec759fcfbfef3b64f5ca730ed43bf48690288b --- gnu/packages/python-web.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index bb7eccd2a6f5c35e7a50d37ed0e29a52c6680185..b17057c9115162024f9c681150afbe0bde15dbfe 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5412,17 +5412,21 @@ Betamax that may possibly end up in the main package.") (define-public python-flask-htpasswd (package (name "python-flask-htpasswd") - (version "0.3.1") + (version "0.5.0") (source (origin (method url-fetch) (uri (pypi-uri "flask-htpasswd" version)) (sha256 (base32 - "14q1y1y9i9bhabdnwd25jqzc4ljli23smxfyyh8abxz1vq93pxra")))) - (build-system python-build-system) + "19arq4rn5nll0bbnsff1j10blm0ydp8nvs09c56s29kmlgj3r42x")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #false)) ;none included (propagated-inputs - (list python-flask python-itsdangerous python-passlib python-tox)) + (list python-flask python-passlib python-pyjwt python-tox)) + (native-inputs (list python-pytest + python-setuptools + python-wheel)) (home-page "https://github.com/carsongee/flask-htpasswd") (synopsis "Basic authentication via htpasswd files in Flask applications") (description "This package provides Basic authentication via