mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add python-django-override-storage.
* gnu/packages/django.scm (python-django-override-storage): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
cd73071984
commit
8b209bb692
1 changed files with 23 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
|
;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -809,3 +810,25 @@ (define-public python-django-crispy-forms
|
||||||
"@code{django-crispy-forms} lets you easily build, customize and reuse
|
"@code{django-crispy-forms} lets you easily build, customize and reuse
|
||||||
forms using your favorite CSS framework, without writing template code.")
|
forms using your favorite CSS framework, without writing template code.")
|
||||||
(license license:expat)))
|
(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)))
|
||||||
|
|
Loading…
Reference in a new issue