pythonPackages.django-pglocks: fix build

This commit is contained in:
Lancelot SIX
2020-02-09 09:17:31 +01:00
committed by Frederik Rietdijk
parent 316f3a63b0
commit 31a57d417f
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, django }: { lib, buildPythonPackage, fetchPypi, django, six }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "django-pglocks"; pname = "django-pglocks";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ django ]; buildInputs = [ django ];
propagatedBuildInputs = [ django ]; propagatedBuildInputs = [ django six ];
# tests need a postgres database # tests need a postgres database
doCheck = false; doCheck = false;