rekado pushed a commit to branch python-team in repository guix. commit fe99b5037ffe131b4889d28fa008570ac467b911 Author: Ricardo Wurmus <rek...@elephly.net> AuthorDate: Sat Jan 11 14:19:06 2025 +0100
gnu: python-django-rest-framework: Update to 3.15.2. * gnu/packages/django.scm (python-django-rest-framework): Update to 3.15.2. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I8c834e8022e9d77f1cbd5b6bde0cbbc65583fe60 --- gnu/packages/django.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 42aaba963f..067116db81 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -1167,7 +1167,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) @@ -1177,8 +1177,8 @@ Django projects, which allows association of a number of tags with any (file-name (git-file-name name version)) (sha256 (base32 - "11wfb156yin6mlgcdzfmi267jsq1cld131mxgd13aqsrj06zlray")))) - (build-system python-build-system) + "0ky559g2rpbz5sir33qq56c1bd4gc73hlrnkxsxpdm5mi69jrvcx")))) + (build-system pyproject-build-system) (arguments '(#:phases (modify-phases %standard-phases @@ -1188,7 +1188,11 @@ Django projects, which allows association of a number of tags with any (invoke "python" "runtests.py") (format #t "test suite not run~%"))))))) (native-inputs - (list python-pytest python-pytest-django tzdata-for-tests)) + (list python-pytest + python-pytest-django + python-setuptools + python-wheel + tzdata-for-tests)) (propagated-inputs (list python-django python-pytz)) (home-page "https://www.django-rest-framework.org")