From d9fd71fe516aedea33673e39f05daea22e7a1b61 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 8 Mar 2021 19:36:51 +0100 Subject: [PATCH] python3Packages.aiohttp: fixup package set In b1d8335904dbdee98696a3094e1d918f40a40367 pytestCheckHook was overridden. Overriding as is done in this commit breaks cross. Therefore, I attempted to use one of the spliced sets but that did not work and got accidentally committed and pushed. --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0632d826093..2f71dc059bc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -251,7 +251,7 @@ in { aiohomekit = callPackage ../development/python-modules/aiohomekit { }; aiohttp = callPackage ../development/python-modules/aiohttp { - pytestCheckHook = self.pkgsBuildHost.pytestCheckHook.override { pytest = self.pytest_6_1; }; + pytestCheckHook = self.pytestCheckHook.override { pytest = self.pytest_6_1; }; }; aiohttp-cors = callPackage ../development/python-modules/aiohttp-cors { };