summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-07-14 22:51:57 -0300
committerVinicius Monego <monego@posteo.net>2025-07-19 04:10:10 -0300
commit83cd6d12e2253dfb0092a448c1c7fd3284acde9c (patch)
tree76d1b6dc2b8d72b51bbd43605ad1fe567743bed7
parentbf2e08a05910ff5624bfa77cf0953a5341180c87 (diff)
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
-rw-r--r--gnu/packages/django.scm13
1 files 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 <luis.felipe.la@protonmail.com>
;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2025 Vinicius Monego <monego@posteo.net>
;;;
;;; 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.")