guix-commits
[Top][All Lists]
Advanced

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

20/55: gnu: Add python-django-cache-url.


From: guix-commits
Subject: 20/55: gnu: Add python-django-cache-url.
Date: Thu, 21 Sep 2023 13:31:35 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit c196c4c3536389094c3a2fc5b9bd62e63fd02689
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Sep 16 14:34:09 2023 +0800

    gnu: Add python-django-cache-url.
    
    * gnu/packages/django.scm (python-django-cache-url): New variable.
---
 gnu/packages/django.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 3121ef30d5..b6f695b080 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -189,6 +189,26 @@ to the @dfn{don't repeat yourself} (DRY) principle.")
 ;; Use 3.2 LTS as the default until packages gain support for 4.x.
 (define-public python-django python-django-3.2)
 
+(define-public python-django-cache-url
+  (package
+    (name "python-django-cache-url")
+    (version "3.4.4")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "django-cache-url" version))
+              (sha256
+               (base32
+                "0dpx2wmcclmd3jkprdljz3makq12vd0sjv3xnvlj5vk1lg7glb7g"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-django))
+    (home-page "https://github.com/epicserve/django-cache-url";)
+    (synopsis "Configure Django cache settings from URLs")
+    (description
+     "This package provides a facility for configuring Django cache settings
+with a @var{CACHE_URL} environment variable.")
+    (license license:expat)))
+
 (define-public python-django-extensions
   (package
     (name "python-django-extensions")



reply via email to

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