python.pkgs.PyICU: fix build

fallout of https://github.com/NixOS/nixpkgs/pull/54182
This commit is contained in:
Robert Schütz 2019-03-16 09:48:01 +01:00
parent 3aecf21239
commit f7156588b2

View File

@ -4,7 +4,7 @@
, pytest , pytest
, six , six
, fetchpatch , fetchpatch
, pkgs , icu
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -23,7 +23,9 @@ buildPythonPackage rec {
}) })
]; ];
buildInputs = [ pkgs.icu pytest ]; nativeBuildInputs = [ icu ]; # for icu-config
buildInputs = [ icu ];
checkInputs = [ pytest ];
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six ];
meta = with stdenv.lib; { meta = with stdenv.lib; {