gnu: python-django: Propagate python-sqlparse.

* gnu/packages/django.scm (python-django)[native-inputs]: Move PYTHON-SQLPARSE ...
[propagated-inputs]: ... here.
This commit is contained in:
Marius Bakke 2020-09-01 02:32:02 +02:00
parent ac3103e8f3
commit 60c964ab75
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -108,13 +108,16 @@ (define-public python-django
("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