python.pkgs.PyICU: fix build
fallout of https://github.com/NixOS/nixpkgs/pull/54182
This commit is contained in:
parent
3aecf21239
commit
f7156588b2
1 changed files with 4 additions and 2 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue