summaryrefslogtreecommitdiff
path: root/gnu/packages/django.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/django.scm')
-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")