efraim pushed a commit to branch core-updates
in repository guix.
commit fa7cd333787758d536cfb1918e181682ae5a971b
Author: Efraim Flashner <[email protected]>
Date: Thu Oct 27 22:18:30 2016 +0300
gnu: python-django-filter: Add inputs for tests.
* gnu/packages/django.scm (python-django-filter)[native-inputs]: Add
python-django, python-mock.
---
gnu/packages/django.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 8d4a7e4..6d0150a 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -176,6 +176,9 @@ useful tools for testing Django applications and projects.")
(base32
"0f78hmk8c903zwfzlsiw7ivgag81ymmb5hi73rzxbhnlg2v0l3fx"))))
(build-system python-build-system)
+ (native-inputs
+ `(("python-django" ,python-django)
+ ("python-mock" ,python-mock)))
(home-page "https://django-filter.readthedocs.io/en/latest/")
(synopsis "Reusable Django application to filter querysets dynamically")
(description