From 698ce521eba8fe334c1b717270f67df12155f957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 16 Mar 2019 09:48:01 +0100 Subject: [PATCH] python.pkgs.PyICU: fix build fallout of https://github.com/NixOS/nixpkgs/pull/54182 (cherry picked from commit f7156588b28ea77c08a07a2d81298ebfb493330e) --- pkgs/development/python-modules/pyicu/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; {