mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add python-django-overextends.
* gnu/packages/django.scm (python-django-overextends, python2-django-overextends): New variables.
This commit is contained in:
parent
659692c0c3
commit
932462536b
1 changed files with 34 additions and 0 deletions
|
@ -437,3 +437,37 @@ (define-public python-django-contrib-comments
|
|||
|
||||
(define-public python2-django-contrib-comments
|
||||
(package-with-python2 python-django-contrib-comments))
|
||||
|
||||
(define-public python-django-overextends
|
||||
(package
|
||||
(name "python-django-overextends")
|
||||
(version "0.4.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "django-overextends" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0qc2pcf3i56pmfxh2jw7k3pgljd8xzficmkl2541n7bkcbngqfzm"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(zero? (system* "./test_project/manage.py" "test")))))))
|
||||
(propagated-inputs
|
||||
`(("python-django" ,python-django)))
|
||||
(native-inputs
|
||||
`(("sphinx-me" ,python-sphinx-me)))
|
||||
(home-page "https://github.com/stephenmcd/django-overextends")
|
||||
(synopsis "Circular template inheritance")
|
||||
(description
|
||||
"A Django reusable app providing the overextends template tag, a drop-in
|
||||
replacement for Django's extends tag, which allows you to use circular template
|
||||
inheritance. The primary use-case for overextends is to simultaneously
|
||||
override and extend templates from other reusable apps, in your own Django
|
||||
project.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public python2-django-overextends
|
||||
(package-with-python2 python-django-overextends))
|
||||
|
|
Loading…
Reference in a new issue