diff options
-rw-r--r-- | gnu/packages/django.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 1cc7199eef..c086cab3f3 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -108,13 +108,16 @@ ("python-pillow" ,python-pillow) ("python-pyyaml" ,python-pyyaml) ;; optional for tests: ("python-selenium" ,python-selenium) - ("python-sqlparse" ,python-sqlparse) ("python-tblib" ,python-tblib))) (propagated-inputs `(("python-argon2-cffi" ,python-argon2-cffi) ("python-asgiref" ,python-asgiref) ("python-bcrypt" ,python-bcrypt) - ("python-pytz" ,python-pytz))) + ("python-pytz" ,python-pytz) + + ;; This input is not strictly required, but in practice many Django + ;; libraries need it for test suites and similar. + ("python-sqlparse" ,python-sqlparse))) (home-page "https://www.djangoproject.com/") (synopsis "High-level Python Web framework") (description |