aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2024-12-17 20:47:19 +0000
committerChristopher Baines <mail@cbaines.net>2024-12-17 20:47:19 +0000
commitd30bcb4f7dfe2a390291e333610ba5a241da3273 (patch)
tree591fcbfe06f9a96dc1b7fd920212982064356e22
parent8d06427af0fd70116ff2aea50a933203481e3d33 (diff)
downloadguix-d30bcb4f7dfe2a390291e333610ba5a241da3273.tar
guix-d30bcb4f7dfe2a390291e333610ba5a241da3273.tar.gz
gnu: python-django-rest-framework: Update to 3.15.2.
* gnu/packages/django.scm (python-django-rest-framework): Update to 3.15.2. Change-Id: I8bcfad8cc6edf950f68b1c0212c563327b30db76
-rw-r--r--gnu/packages/django.scm21
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index f0770fef7f..60c8f44cd3 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1168,7 +1168,7 @@ Django projects, which allows association of a number of tags with any
(define-public python-django-rest-framework
(package
(name "python-django-rest-framework")
- (version "3.13.1")
+ (version "3.15.2")
(source
(origin
(method git-fetch)
@@ -1178,20 +1178,21 @@ Django projects, which allows association of a number of tags with any
(file-name (git-file-name name version))
(sha256
(base32
- "11wfb156yin6mlgcdzfmi267jsq1cld131mxgd13aqsrj06zlray"))))
+ "0ky559g2rpbz5sir33qq56c1bd4gc73hlrnkxsxpdm5mi69jrvcx"))))
(build-system python-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? inputs #:allow-other-keys)
- (if tests?
- (invoke "python" "runtests.py")
- (format #t "test suite not run~%")))))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (invoke "python" "runtests.py")
+ (format #t "test suite not run~%")))))))
(native-inputs
(list python-pytest python-pytest-django tzdata-for-tests))
(propagated-inputs
- (list python-django python-pytz))
+ (list python-django-4.2 python-pytz))
(home-page "https://www.django-rest-framework.org")
(synopsis "Toolkit for building Web APIs with Django")
(description