guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

239/242: gnu: Add python-sanic-routing.


From: guix-commits
Subject: 239/242: gnu: Add python-sanic-routing.
Date: Thu, 12 May 2022 14:14:54 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit f6b001be16ab7f35bcdb2e5bfac5cbcb11e09ffb
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Wed Apr 27 09:48:24 2022 +0200

    gnu: Add python-sanic-routing.
    
    * gnu/packages/python-web.scm (python-sanic-routing): New variable.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/python-web.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 094ec10e4b..ff0f961849 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6341,6 +6341,27 @@ parsing and rewriting of remote git URLs from various 
hosting providers.")
 as a Python package.")
     (license license:bsd-3)))
 
+(define-public python-sanic-routing
+  (package
+    (name "python-sanic-routing")
+    (version "0.7.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "sanic-routing" version))
+       (sha256
+        (base32 "0k9paln0jd4sc2bklp977c82n29pk12wiv726siplkh57y5yi70k"))))
+    (build-system python-build-system)
+    (arguments
+     ;; PyPi sources does not contain tests, recursive dependency on
+     ;; python-sanic.
+     (list #:tests? #f))
+    (home-page "https://github.com/sanic-org/sanic-routing/";)
+    (synopsis "Routing component for Sanic")
+    (description "Internal package for @code{python-sanic}, which provides
+the @code{BasicRouter}.")
+    (license license:expat)))
+
 (define-public python-sanic
   (package
     (name "python-sanic")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]