mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
python.pkgs.PyICU: fix build
fallout of https://github.com/NixOS/nixpkgs/pull/54182
This commit is contained in:
parent
3aecf21239
commit
f7156588b2
@ -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 New Issue
Block a user