summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2016-11-05 11:48:18 +0100
committerGitHub <noreply@github.com>2016-11-05 11:48:18 +0100
commit2df4d24a7484fd8d9447d242290846a3f67ca71c (patch)
treef2a0c10dbd1253b67b4605be54b4c7a13bf89337
parent5d5efcea14651f7e4002a68c79f9a825d2195a03 (diff)
parent250f3feec2c3153c0f9a2e5cf723428166620c0f (diff)
downloadnixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.tar
nixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.tar.gz
nixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.tar.bz2
nixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.tar.lz
nixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.tar.xz
nixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.tar.zst
nixpkgs-2df4d24a7484fd8d9447d242290846a3f67ca71c.zip
Merge pull request #20179 from vbgl/lxml-darwin
python-lxml: fix build on darwin
-rw-r--r--pkgs/top-level/python-packages.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 1c6acd3ddd9..51d9647b929 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -13650,6 +13650,8 @@ in {
 
     buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
 
+    hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
+
     meta = {
       description = "Pythonic binding for the libxml2 and libxslt libraries";
       homepage = http://lxml.de;
@@ -13668,6 +13670,8 @@ in {
 
     buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
 
+    hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
+
     meta = {
       description = "Pythonic binding for the libxml2 and libxslt libraries";
       homepage = http://lxml.de;