From 867ec3a41cf348ebe8ab1fcc32ccf898d93435c7 Mon Sep 17 00:00:00 2001 From: Adam Faiz Date: Sat, 1 Mar 2025 11:43:48 +0100 Subject: [PATCH] gnu: Add python-mohawk. * gnu/packages/python-web.scm (python-mohawk): New variable. Change-Id: I8c6c85ea49135f173bce0f2f885deba63e23898b Signed-off-by: Nicolas Goaziou --- gnu/packages/python-web.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index dfbca85ed9..2f8cd9ab7f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4787,6 +4787,26 @@ protocol, both client and server for Python asyncio module. TYPE (\"I\" and \"A\"), PASV, ABOR, APPE, REST.") (license license:asl2.0))) +(define-public python-mohawk + (package + (name "python-mohawk") + (version "1.1.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "mohawk" version)) + (sha256 + (base32 + "08wppsv65yd0gdxy5zwq37yp6jmxakfz4a2yx5wwq2d222my786j")))) + (build-system python-build-system) + (native-inputs (list python-mock python-nose)) + (propagated-inputs (list python-six)) + (home-page "https://github.com/kumar303/mohawk") + (synopsis "Library for Hawk HTTP authorization") + (description + "Mohawk is an alternate Python implementation of the Hawk HTTP +authorization scheme.") + (license license:bsd-3))) + (define-public python-msal (package (name "python-msal")