1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-27 16:11:58 +00:00

python3Packages.python-redis-lock: fix eval

This commit is contained in:
Martin Weinelt 2021-10-27 12:13:13 +02:00
parent 704aec5b4a
commit aacee0857d
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -6,7 +6,7 @@
, pytestCheckHook
, process-tests
, pkgs
, withDjango ? false, django_redis
, withDjango ? false, django-redis
}:
buildPythonPackage rec {
@ -20,7 +20,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
redis
] ++ lib.optional withDjango django_redis;
] ++ lib.optional withDjango django-redis;
checkInputs = [
pytestCheckHook