From 5776e40f8b455972b9f92233180fd25fd7f69aa8 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 2 Dec 2023 19:29:08 +0100 Subject: [PATCH] python311Packages.zope-configuration: fix eval without aliases Consuming the `zope_testing` alias broke eval. --- .../development/python-modules/zope-configuration/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zope-configuration/default.nix b/pkgs/development/python-modules/zope-configuration/default.nix index b1c6e027a36d..e5a30f1e7d68 100644 --- a/pkgs/development/python-modules/zope-configuration/default.nix +++ b/pkgs/development/python-modules/zope-configuration/default.nix @@ -7,7 +7,7 @@ , zope_interface , zope_schema , pytestCheckHook -, zope_testing +, zope-testing , zope_testrunner , manuel }: @@ -32,7 +32,7 @@ buildPythonPackage rec { nativeCheckInputs = [ manuel pytestCheckHook - zope_testing + zope-testing zope_testrunner ];