From 83cd6d12e2253dfb0092a448c1c7fd3284acde9c Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Mon, 14 Jul 2025 22:51:57 -0300 Subject: [PATCH] gnu: python-pytest-django: Update to 4.11.1. * gnu/packages/django.scm (python-pytest-django): Update to 4.11.1. [source]: Update URI. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. [home-page]: Follow redirect. Change-Id: I65286ea9c62a051f2207cdb73cb6b7c559089bc0 --- gnu/packages/django.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index b13e94da292..aa75bda685b 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2021 Luis Felipe López Acevedo ;;; Copyright © 2022 Pradana Aumars ;;; Copyright © 2025 Sharlatan Hellseher +;;; Copyright © 2025 Vinicius Monego ;;; ;;; This file is part of GNU Guix. ;;; @@ -429,14 +430,14 @@ size and quality.") (define-public python-pytest-django (package (name "python-pytest-django") - (version "4.5.2") + (version "4.11.1") (source (origin (method url-fetch) - (uri (pypi-uri "pytest-django" version)) + (uri (pypi-uri "pytest_django" version)) (sha256 (base32 - "1hp61jbnnhnjxzdrz9ni08lzrv8q7iiycnnxvcwnkhxpkdsny1yr")))) - (build-system python-build-system) + "14br4bzx07yxrx6xsyyhlpjgb0sz6lflbw90g87cn0z13qd18jd9")))) + (build-system pyproject-build-system) (arguments ;; The test suite is disabled because there are many test failures (see: ;; https://github.com/pytest-dev/pytest-django/issues/943). @@ -459,10 +460,10 @@ size and quality.") " and not test_urls_cache_is_cleared"))) (format #t "test suite not run~%"))))))) (native-inputs - (list python-setuptools-scm)) + (list python-setuptools python-setuptools-scm python-wheel)) (propagated-inputs (list python-pytest)) - (home-page "https://pytest-django.readthedocs.org/") + (home-page "https://pytest-django.readthedocs.io/") (synopsis "Django plugin for py.test") (description "Pytest-django is a plugin for py.test that provides a set of useful tools for testing Django applications and projects.")