about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-08-16 18:37:58 +0900
committerGitHub <noreply@github.com>2023-08-16 18:37:58 +0900
commit74cfe0658e658d8fafc4bf36b39bf8b736724a1e (patch)
tree6d84b9909bac3628c50e80c77d53c21075a12a4f /pkgs
parentda5c3bde300e33ace4fdef51abd3b543123a3be2 (diff)
parent6464ea459026750f45ec35456ded6cf8956e4283 (diff)
Merge pull request #246925 from tjni/django-extensions
python3.pkgs.django-extensions: add pip to test dependencies
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/django-extensions/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/django-extensions/default.nix b/pkgs/development/python-modules/django-extensions/default.nix
index 4392427b8656c..3c09cde4d10ba 100644
--- a/pkgs/development/python-modules/django-extensions/default.nix
+++ b/pkgs/development/python-modules/django-extensions/default.nix
@@ -5,6 +5,7 @@
 , django
 , factory_boy
 , mock
+, pip
 , pygments
 , pytest-django
 , pytestCheckHook
@@ -46,6 +47,7 @@ buildPythonPackage rec {
   nativeCheckInputs = [
     factory_boy
     mock
+    pip
     pygments # not explicitly declared in setup.py, but some tests require it
     pytest-django
     pytestCheckHook