diff --git a/pkgs/development/python-modules/pyicu/default.nix b/pkgs/development/python-modules/pyicu/default.nix index d0db3c6ed8382..6eba02e59ce2a 100644 --- a/pkgs/development/python-modules/pyicu/default.nix +++ b/pkgs/development/python-modules/pyicu/default.nix @@ -4,7 +4,7 @@ , pytest , six , fetchpatch -, pkgs +, icu }: buildPythonPackage rec { @@ -23,7 +23,9 @@ buildPythonPackage rec { }) ]; - buildInputs = [ pkgs.icu pytest ]; + nativeBuildInputs = [ icu ]; # for icu-config + buildInputs = [ icu ]; + checkInputs = [ pytest ]; propagatedBuildInputs = [ six ]; meta = with stdenv.lib; {