gnu: python-django-jinja: Don't use unstable tarball.

* gnu/packages/django.scm (python-django-jinja)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-26 20:27:24 +02:00
parent 854d4d40fd
commit 9f00d13d5d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -456,14 +456,14 @@ (define-public python-django-jinja
(version "2.4.1")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/niwinz/django-jinja/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/niwinz/django-jinja.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0bzrb4m6wx9ph5cpvz7wpvg5k6ksvj0dnxlg0nhhqskhvp46brs1"))))
"1fcrxlznlq1xvl26y3j1r22vvy6m08r5l97xi2wj50rdmxhfvhis"))))
(build-system python-build-system)
(propagated-inputs
`(("python-django" ,python-django)