gnu: python-django-assets: Update to 2.0.

* gnu/packages/django.scm (python-django-assets): Update to 2.0.
[arguments]: Remove.
This commit is contained in:
Marius Bakke 2020-09-01 12:57:23 +02:00
parent e2ac59f984
commit 357ab65bae
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -559,33 +559,14 @@ (define-public python2-django-gravatar2
(define-public python-django-assets
(package
(name "python-django-assets")
(version "0.12")
(version "2.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "django-assets" version))
(sha256
(base32
"0y0007fvkn1rdlj2g0y6k1cnkx53kxab3g8i85i0rd58k335p365"))))
"0fc6i77faxxv1gjlp06lv3kw64b5bhdiypaygfxh5djddgk83fwa"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'fix-tests
(lambda _
(begin
;; https://github.com/miracle2k/django-assets/issues/87
(substitute* "tests/__init__.py"
(("settings.configure.*")
(string-append
"settings.configure(\n"
"INSTALLED_APPS=['django_assets', "
"'django.contrib.staticfiles'],\n"
"TEMPLATES=[{'BACKEND': "
"'django.template.backends.django.DjangoTemplates'}],\n"
")\n")))
;; These tests fail
(substitute* "tests/test_django.py"
(("TestLoader") "NoTestLoader"))))))))
(native-inputs
`(("python-nose" ,python-nose)))
(propagated-inputs