[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: Add python-django-allauth.
From: |
Kei Kebreau |
Subject: |
03/06: gnu: Add python-django-allauth. |
Date: |
Sat, 8 Apr 2017 12:41:41 -0400 (EDT) |
kkebreau pushed a commit to branch master
in repository guix.
commit e1f06e1192f57551bcb67d93411affb9d497e30c
Author: ng0 <address@hidden>
Date: Wed Feb 15 10:09:24 2017 +0000
gnu: Add python-django-allauth.
* gnu/packages/django.scm (python-django-allauth): New variable.
Signed-off-by: Kei Kebreau <address@hidden>
---
gnu/packages/django.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 805dca6..4f7620e 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Hartmut Goebel <address@hidden>
;;; Copyright © 2016 Efraim Flashner <address@hidden>
+;;; Copyright © 2017 ng0 <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -189,3 +190,34 @@ them do this.")
(define-public python2-django-filter
(package-with-python2 python-django-filter))
+
+(define-public python-django-allauth
+ (package
+ (name "python-django-allauth")
+ (version "0.30.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "django-allauth" version))
+ (sha256
+ (base32
+ "1fslqc5qqb0b66yscvkyjwfv8cnbfx5nlkpnwimyb3pf1nc1w7r3"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-openid" ,python-openid)
+ ("python-requests" ,python-requests)
+ ("python-requests-oauthlib" ,python-requests-oauthlib)))
+ (native-inputs
+ `(("python-mock" ,python-mock)))
+ (inputs
+ `(("python-django" ,python-django)))
+ (home-page "https://github.com/pennersr/django-allauth")
+ (synopsis "Set of Django applications addressing authentication")
+ (description
+ "Integrated set of Django applications addressing authentication,
+registration, account management as well as 3rd party (social)
+account authentication.")
+ (license license:expat)))
+
+(define-public python2-django-allauth
+ (package-with-python2 python-django-allauth))
- branch master updated (72fa666 -> d99a2ad), Kei Kebreau, 2017/04/08
- 01/06: gnu: Add python-defusedxml., Kei Kebreau, 2017/04/08
- 02/06: gnu: Add python-openid., Kei Kebreau, 2017/04/08
- 04/06: gnu: Add python-django-gravatar2., Kei Kebreau, 2017/04/08
- 05/06: gnu: Add python-django-mailman3., Kei Kebreau, 2017/04/08
- 03/06: gnu: Add python-django-allauth.,
Kei Kebreau <=
- 06/06: gnu: Add postorius., Kei Kebreau, 2017/04/08