summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-03-16 17:19:10 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-03-16 17:20:08 +0100
commit2e72372c05ee5a4e0c690178c5f6305878a3a777 (patch)
tree3b814e229896632fe5212fa82bb883328e31fb73 /pkgs
parente82ca0fa0182d2192078c0e5aae1caa908009574 (diff)
downloadnixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.tar
nixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.tar.gz
nixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.tar.bz2
nixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.tar.lz
nixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.tar.xz
nixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.tar.zst
nixlib-2e72372c05ee5a4e0c690178c5f6305878a3a777.zip
pythonPackages.django_guardian: fix eval
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/django_guardian.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/django_guardian.nix b/pkgs/development/python-modules/django_guardian.nix
index c9217955213d..1b31456162b0 100644
--- a/pkgs/development/python-modules/django_guardian.nix
+++ b/pkgs/development/python-modules/django_guardian.nix
@@ -1,6 +1,6 @@
 { stdenv, buildPythonPackage, python, fetchurl
 , django_environ, mock, django, six
-, pytest, pytestrunner, pytestdjango, setuptools_scm
+, pytest, pytestrunner, pytest-django, setuptools_scm
 }:
 buildPythonPackage rec {
   name = "django-guardian-${version}";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
     sha256 = "1r3xj0ik0hh6dfak4kjndxk5v73x95nfbppgr394nhnmiayv4zc5";
   };
 
-  buildInputs = [ pytest pytestrunner pytestdjango django_environ mock setuptools_scm ];
+  buildInputs = [ pytest pytestrunner pytest-django django_environ mock setuptools_scm ];
   propagatedBuildInputs = [ django six ];
 
   checkPhase = ''