[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/55: gnu: Add python-dj-email-url.
From: |
guix-commits |
Subject: |
17/55: gnu: Add python-dj-email-url. |
Date: |
Thu, 21 Sep 2023 13:31:35 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 40f1f2d33befca62b54e6d8ec45b76c965905ab0
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Sep 16 14:10:26 2023 +0800
gnu: Add python-dj-email-url.
* gnu/packages/django.scm (python-dj-email-url): New variable.
---
gnu/packages/django.scm | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 577789e988..08c44f1414 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
;;; Copyright © 2019 Sam <smbaines8@gmail.com>
-;;; Copyright © 2020, 2021, 2022 Marius Bakke <marius@gnu.org>
+;;; Copyright © 2020, 2021, 2022, 2023 Marius Bakke <marius@gnu.org>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Luis Felipe López Acevedo <luis.felipe.la@protonmail.com>
;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
@@ -32,6 +32,7 @@
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix gexp)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix deprecation)
#:use-module (guix search-paths)
@@ -691,6 +692,26 @@ dictionary, populated with all the data specified in your
URL. There is also a
conn_max_age argument to easily enable Django’s connection pool.")
(license license:bsd-2)))
+(define-public python-dj-email-url
+ (package
+ (name "python-dj-email-url")
+ (version "1.0.6")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "dj-email-url" version))
+ (sha256
+ (base32
+ "16k91rvd9889xxrrf84a3zb0jpinizhfqdmafn54zxa8kqrf7zsm"))))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/migonzalvar/dj-email-url")
+ (synopsis "Configure email settings from URLs")
+ (description
+ "This package provides a facility for configuring Django email backend
+settings from URLs.")
+ (license (list license:bsd-2 ;source code
+ license:cc-by4.0 ;documentation
+ license:cc0)))) ;configuration and data
+
(define-public python-django-picklefield
(package
(name "python-django-picklefield")
- branch master updated (ee7c9d2541 -> fdfafaa48c), guix-commits, 2023/09/21
- 03/55: gnu: python-certauth: Fix test failure with newer PyOpenSSL., guix-commits, 2023/09/21
- 01/55: gnu: Add python-jwcrypto., guix-commits, 2023/09/21
- 04/55: gnu: python-filelock: Update home page., guix-commits, 2023/09/21
- 05/55: gnu: python-deprecated: Remove unused inputs., guix-commits, 2023/09/21
- 06/55: gnu: Add python-a2wsgi., guix-commits, 2023/09/21
- 18/55: gnu: python-dj-database-url: Update to 2.1.0., guix-commits, 2023/09/21
- 08/55: gnu: Add python-tracerite., guix-commits, 2023/09/21
- 15/55: gnu: uwufetch: Avoid top-level package references., guix-commits, 2023/09/21
- 17/55: gnu: Add python-dj-email-url.,
guix-commits <=
- 21/55: gnu: Add python-django-configurations., guix-commits, 2023/09/21
- 23/55: gnu: python-django-picklefield: Update to 3.1.0., guix-commits, 2023/09/21
- 27/55: gnu: graphite-web: Update to 1.1.10., guix-commits, 2023/09/21
- 28/55: gnu: Remove python-django@2.2., guix-commits, 2023/09/21
- 29/55: gnu: python-flex: Update to 6.14.1., guix-commits, 2023/09/21
- 34/55: gnu: python-django@3.2: Update to 3.2.21., guix-commits, 2023/09/21
- 35/55: gnu: python-asgiref: Update to 3.7.2., guix-commits, 2023/09/21
- 40/55: gnu: python-distlib: Don't reference the implicit bash input., guix-commits, 2023/09/21
- 52/55: gnu: python-libnacl: Update to 2.1.0., guix-commits, 2023/09/21
- 44/55: gnu: python-uvicorn: Update to 0.23.2., guix-commits, 2023/09/21