From a49ccd5da64e21c9e6a6cc65345dc369619a3c4c Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 30 Oct 2021 11:50:00 +0000 Subject: [PATCH] python38Packages.PyICU: unpin icu icu68 was pinned in de8dbb21fbf740927ad2888bac59215a92a64ee0 for 21.05 ZHF, but it's no longer necessary. --- pkgs/development/python-modules/pyicu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyicu/default.nix b/pkgs/development/python-modules/pyicu/default.nix index c9555f7bb65f..c24a4a08c3cf 100644 --- a/pkgs/development/python-modules/pyicu/default.nix +++ b/pkgs/development/python-modules/pyicu/default.nix @@ -3,7 +3,7 @@ , fetchPypi , pytestCheckHook , six -, icu68 +, icu }: buildPythonPackage rec { @@ -15,8 +15,8 @@ buildPythonPackage rec { sha256 = "3d80de47045a8163db5aebc947c42b4d429eeea4f0c32af4f40b33981fa872b9"; }; - nativeBuildInputs = [ icu68 ]; # for icu-config, but should be replaced with pkg-config - buildInputs = [ icu68 ]; + nativeBuildInputs = [ icu ]; # for icu-config, but should be replaced with pkg-config + buildInputs = [ icu ]; checkInputs = [ pytestCheckHook six ]; meta = with lib; {