Skip to content

Commit

Permalink
python.pkgs.PyICU: fix build
Browse files Browse the repository at this point in the history
fallout of #54182
  • Loading branch information
Robert Schütz committed Mar 16, 2019
1 parent 3aecf21 commit f715658
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/pyicu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
, pytest
, six
, fetchpatch
, pkgs
, icu
}:

buildPythonPackage rec {
Expand All @@ -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; {
Expand Down

0 comments on commit f715658

Please sign in to comment.