me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/django.scm (python-django-jinja)[source]: Download using
git-fetch.
master
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
1 changed files with 6 additions and 6 deletions

View File

@ -456,14 +456,14 @@ merging, minifying and compiling CSS and Javascript files.")
(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)