mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 22:11:45 +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
|
, 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; {
|
||||||
|
Loading…
Reference in New Issue
Block a user