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
, 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; {