mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: python-django-pipeline: Update to 2.1.0.
Remove python-slimit as a dependency as it's no longer supported. Also make the inputs native-inputs since they're all test dependencies and users of this library should pick which things they want to use it with. * gnu/packages/django.scm (python-django-pipeline): Update to 2.1.0. [propagated-inputs]: Move some to... [native-inputs]: ... here, removing python-slimit and adding python-setuptools-scm.
This commit is contained in:
parent
c3d7c09b9f
commit
f77d5ebb6a
1 changed files with 6 additions and 4 deletions
|
@ -800,14 +800,14 @@ (define-public python-django-contrib-comments
|
||||||
(define-public python-django-pipeline
|
(define-public python-django-pipeline
|
||||||
(package
|
(package
|
||||||
(name "python-django-pipeline")
|
(name "python-django-pipeline")
|
||||||
(version "2.0.5")
|
(version "2.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "django-pipeline" version))
|
(uri (pypi-uri "django-pipeline" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"19vrbd5s12qw4qlg5n8ldv7zz2rs5y2sdid1i7lvgp92m71dayvc"))))
|
"194j8xihx5yr1yfrssdy6nxmx8yc999pz2ai9lg83l7izmbcx9in"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -823,8 +823,10 @@ (define-public python-django-pipeline
|
||||||
(setenv "DJANGO_SETTINGS_MODULE" "tests.settings")
|
(setenv "DJANGO_SETTINGS_MODULE" "tests.settings")
|
||||||
(invoke "django-admin" "test" "tests"
|
(invoke "django-admin" "test" "tests"
|
||||||
"--pythonpath=.")))))))
|
"--pythonpath=.")))))))
|
||||||
(propagated-inputs
|
(native-inputs
|
||||||
(list python-css-html-js-minify python-django python-slimit
|
(list python-django
|
||||||
|
python-setuptools-scm
|
||||||
|
python-css-html-js-minify
|
||||||
python-jsmin))
|
python-jsmin))
|
||||||
(home-page
|
(home-page
|
||||||
"https://github.com/jazzband/django-pipeline")
|
"https://github.com/jazzband/django-pipeline")
|
||||||
|
|
Loading…
Reference in a new issue