summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorCharles Roelli <charles@aurox.ch>2026-05-21 14:36:55 +0000
committerCharles Roelli <charles@aurox.ch>2026-05-21 14:36:55 +0000
commit46c1218a7710b37e6fda96d612cbb8362e6079b6 (patch)
tree8aae0d751ec85befa9c134befb885affd7d0a9a6 /gnu/packages
parent732d8078431bda8a52ab1d6cdf2d901c5ed7d3c8 (diff)
gnu: python-django-extensions: Update to 4.1-09gk82rsmq.python-team-django-6
* gnu/packages/django.scm (python-django-extensions): Update to 4.1-09gk82rsmq. [arguments] <test-flags>: Enable tests fixed by adding the following dependencies. [native-inputs]: Add python-vobject and python-werkzeug. Change-Id: Icd2055d685b7555cafce9c17263af78e7551b496
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/django.scm19
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 5b5beba6e0..d2d3c00726 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -380,28 +380,27 @@ and adapters that are useful for non-trivial configuration scenarios.")
(define-public python-django-extensions
(package
(name "python-django-extensions")
- (version "4.1")
+ (properties '((commit . "32ddfb0499bec7f39f9fbb44568d2781cecd1f32")
+ (revision . "0")))
+ (version (git-version "4.1"
+ (assoc-ref properties 'revision)
+ (assoc-ref properties 'commit)))
(source
(origin
(method git-fetch)
;; Fetch from the git repository, so that the tests can be run.
(uri (git-reference
(url "https://github.com/django-extensions/django-extensions")
- (commit version)))
+ (commit (assoc-ref properties 'commit))))
(file-name (string-append name "-" version))
(sha256
- (base32 "1qayan9za7ylvzkwp6p0l0735gavnzd1kdjsfc178smq6xnby0ss"))))
+ (base32 "09gk82rsmqgaz4pqk0xvb4mgfprls8h1wm24p74d0ykdi7li2plg"))))
(build-system pyproject-build-system)
(arguments
(list
;; The 5 tests in test_dumbscript.py fail (OperationalError).
#:test-flags
- #~(list "--ignore" "tests/test_dumpscript.py"
- "-k" (string-append
- ;; These fail for unknown reasons.
- "not test_do_export_emails_format_vcard_start"
- " and not test_initialize_runserver_plus"
- " and not test_should_highlight_python_syntax_with_name"))))
+ #~(list "--ignore" "tests/test_dumpscript.py")))
(propagated-inputs
(list python-django))
(native-inputs
@@ -412,6 +411,8 @@ and adapters that are useful for non-trivial configuration scenarios.")
python-pytest-django
python-setuptools
python-shortuuid
+ python-vobject
+ python-werkzeug
tzdata-for-tests))
(home-page "https://github.com/django-extensions/django-extensions")
(synopsis "Custom management extensions for Django")