guix-commits
[Top][All Lists]
Advanced

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

02/07: gnu: Add python-django-override-storage.


From: Ludovic Courtès
Subject: 02/07: gnu: Add python-django-override-storage.
Date: Wed, 4 Apr 2018 08:39:47 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 8b209bb6924cbfe3f438f66a6776a2994e0cdeaa
Author: Vijayalakshmi Vedantham <address@hidden>
Date:   Thu Mar 29 04:25:43 2018 +0530

    gnu: Add python-django-override-storage.
    
    * gnu/packages/django.scm (python-django-override-storage): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/django.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 4bb2e69..d42afb2 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2017 Nils Gillmann <address@hidden>
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2018 Vijayalakshmi Vedantham <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -809,3 +810,25 @@ provides features like a web browseable API and 
authentication policies.")
      "@code{django-crispy-forms} lets you easily build, customize and reuse
 forms using your favorite CSS framework, without writing template code.")
     (license license:expat)))
+
+(define-public python-django-override-storage
+  (package
+    (name "python-django-override-storage")
+    (version "0.1.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "django-override-storage" version))
+       (sha256
+        (base32
+         "0sqz1mh0yn8b1bzz2gr2azfiynljigm5gkzavp5n17zd3j2jg57x"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-django" ,python-django)))
+    (home-page
+     "https://github.com/danifus/django-override-storage";)
+    (synopsis "Django test helpers to manage file storage side effects")
+    (description
+     "This project provides tools to help reduce the side effects of using
+FileFields during tests.")
+    (license license:expat)))



reply via email to

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