pythonPackages.lxml: fix build on darwin

This commit is contained in:
Ivan Babrou 2021-03-17 13:32:48 -07:00 committed by github-actions[bot]
parent e0a6159fc6
commit c31077a602

View file

@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchFromGitHub
{ stdenv, lib, buildPythonPackage, fetchFromGitHub
, cython
, libxml2
, libxslt
, zlib
, xcodebuild
}:
buildPythonPackage rec {
@ -17,7 +18,7 @@ buildPythonPackage rec {
};
# setuptoolsBuildPhase needs dependencies to be passed through nativeBuildInputs
nativeBuildInputs = [ libxml2.dev libxslt.dev cython ];
nativeBuildInputs = [ libxml2.dev libxslt.dev cython ] ++ lib.optionals stdenv.isDarwin [ xcodebuild ];
buildInputs = [ libxml2 libxslt zlib ];
# tests are meant to be ran "in-place" in the same directory as src