From a1f7ae24aec1a5c9798c90ba4b6159368cc03d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81tila=20Saraiva?= Date: Thu, 28 Apr 2022 11:46:59 -0300 Subject: [PATCH] pyrevolve: fix lack of numpy propagated input --- pkgs/development/python-modules/pyrevolve/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyrevolve/default.nix b/pkgs/development/python-modules/pyrevolve/default.nix index 418d30a810c..74fdc68c07e 100644 --- a/pkgs/development/python-modules/pyrevolve/default.nix +++ b/pkgs/development/python-modules/pyrevolve/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { }; nativeBuildInputs = [ versioneer cython ]; - propagatedBuildInputs = [ contexttimer ]; + propagatedBuildInputs = [ contexttimer numpy ]; - checkInputs = [ pytest numpy ]; + checkInputs = [ pytest ]; # Using approach bellow bcs the tests fail with the pytestCheckHook, throwing the following error # ImportError: cannot import name 'crevolve' from partially initialized module 'pyrevolve' # (most likely due to a circular import)